pub struct PendingExtendedRow {
pub id: StreamId,
pub consumer: Vec<u8>,
pub idle_ms: u64,
pub delivery_count: u32,
}Expand description
One row of the extended XPENDING reply.
Fields§
§id: StreamIdEntry ID.
consumer: Vec<u8>Owning consumer’s name.
idle_ms: u64Idle time in milliseconds (now - delivery_time_ms).
delivery_count: u32Delivery count.
Auto Trait Implementations§
impl Freeze for PendingExtendedRow
impl RefUnwindSafe for PendingExtendedRow
impl Send for PendingExtendedRow
impl Sync for PendingExtendedRow
impl Unpin for PendingExtendedRow
impl UnsafeUnpin for PendingExtendedRow
impl UnwindSafe for PendingExtendedRow
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