pub struct OutboundStatus {
pub state: OutboundState,
pub in_flight: u32,
pub attempt: u32,
pub sent: u64,
pub failed: u64,
pub last_delay_ms: Option<u64>,
}Expand description
OutboundStatus data container.
Fields§
§state: OutboundStatestate field for state.
in_flight: u32in_flight field for in flight.
attempt: u32attempt field for attempt.
sent: u64sent field for sent.
failed: u64failed field for failed.
last_delay_ms: Option<u64>last_delay_ms field for last delay ms.
Trait Implementations§
Source§impl Clone for OutboundStatus
impl Clone for OutboundStatus
Source§fn clone(&self) -> OutboundStatus
fn clone(&self) -> OutboundStatus
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 moreSource§impl Debug for OutboundStatus
impl Debug for OutboundStatus
Source§impl Default for OutboundStatus
impl Default for OutboundStatus
Source§impl PartialEq for OutboundStatus
impl PartialEq for OutboundStatus
impl Eq for OutboundStatus
impl StructuralPartialEq for OutboundStatus
Auto Trait Implementations§
impl Freeze for OutboundStatus
impl RefUnwindSafe for OutboundStatus
impl Send for OutboundStatus
impl Sync for OutboundStatus
impl Unpin for OutboundStatus
impl UnsafeUnpin for OutboundStatus
impl UnwindSafe for OutboundStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.