pub struct PendingSummary {
pub seq: u64,
pub consumer: String,
pub idle_ms: u64,
pub delivery_count: u32,
}Expand description
Snapshot of a single pending entry, used for inspection.
Fields§
§seq: u64Sequence number of the pending event.
consumer: StringName of the consumer that currently owns this entry.
idle_ms: u64Milliseconds elapsed since the most recent delivery.
delivery_count: u32Total number of delivery attempts.
Trait Implementations§
Source§impl Clone for PendingSummary
impl Clone for PendingSummary
Source§fn clone(&self) -> PendingSummary
fn clone(&self) -> PendingSummary
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for PendingSummary
impl RefUnwindSafe for PendingSummary
impl Send for PendingSummary
impl Sync for PendingSummary
impl Unpin for PendingSummary
impl UnsafeUnpin for PendingSummary
impl UnwindSafe for PendingSummary
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