pub struct StreamPendingData {
pub count: usize,
pub start_id: String,
pub end_id: String,
pub consumers: Vec<StreamInfoConsumer>,
}
Expand description
Inner reply type when an xpending
command has data.
Fields§
§count: usize
Limit on the number of messages to return per call.
start_id: String
ID for the first pending record.
end_id: String
ID for the final pending record.
consumers: Vec<StreamInfoConsumer>
Every consumer in the consumer group with at least one pending message, and the number of pending messages it has.
Trait Implementations§
Source§impl Clone for StreamPendingData
impl Clone for StreamPendingData
Source§fn clone(&self) -> StreamPendingData
fn clone(&self) -> StreamPendingData
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StreamPendingData
impl Debug for StreamPendingData
Source§impl Default for StreamPendingData
impl Default for StreamPendingData
Source§fn default() -> StreamPendingData
fn default() -> StreamPendingData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StreamPendingData
impl RefUnwindSafe for StreamPendingData
impl Send for StreamPendingData
impl Sync for StreamPendingData
impl Unpin for StreamPendingData
impl UnwindSafe for StreamPendingData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more