pub struct DeliveryStats {
pub queued: Duration,
pub processing: Duration,
}
Fields§
§queued: Duration
How long message was in queue before being delivered
processing: Duration
Time to process message (excluding queueing time)
Auto Trait Implementations§
impl Freeze for DeliveryStats
impl RefUnwindSafe for DeliveryStats
impl Send for DeliveryStats
impl Sync for DeliveryStats
impl Unpin for DeliveryStats
impl UnwindSafe for DeliveryStats
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