pub struct ReliableRetryReport {
pub examined: usize,
pub retried: usize,
pub timed_out: usize,
}Expand description
Retry pass report.
Fields§
§examined: usizeCurrent deadline entries examined during this pass.
retried: usizePackets resent.
timed_out: usizePackets dropped after exhausting attempts.
Trait Implementations§
Source§impl Clone for ReliableRetryReport
impl Clone for ReliableRetryReport
Source§fn clone(&self) -> ReliableRetryReport
fn clone(&self) -> ReliableRetryReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ReliableRetryReport
Source§impl Debug for ReliableRetryReport
impl Debug for ReliableRetryReport
Source§impl Default for ReliableRetryReport
impl Default for ReliableRetryReport
Source§fn default() -> ReliableRetryReport
fn default() -> ReliableRetryReport
Returns the “default value” for a type. Read more
impl Eq for ReliableRetryReport
Source§impl PartialEq for ReliableRetryReport
impl PartialEq for ReliableRetryReport
impl StructuralPartialEq for ReliableRetryReport
Auto Trait Implementations§
impl Freeze for ReliableRetryReport
impl RefUnwindSafe for ReliableRetryReport
impl Send for ReliableRetryReport
impl Sync for ReliableRetryReport
impl Unpin for ReliableRetryReport
impl UnsafeUnpin for ReliableRetryReport
impl UnwindSafe for ReliableRetryReport
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