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
§start_id: String
§end_id: String
§consumers: Vec<StreamInfoConsumer>
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