pub struct AppReport {
pub events: Vec<AppEvent>,
pub sent: u64,
pub replies: u64,
pub timeouts: u64,
pub duplicate_replies: u64,
pub late_replies: u64,
pub interrupted: bool,
}Fields§
§events: Vec<AppEvent>§sent: u64§replies: u64§timeouts: u64§duplicate_replies: u64§late_replies: u64§interrupted: boolTrait Implementations§
impl Eq for AppReport
impl StructuralPartialEq for AppReport
Auto Trait Implementations§
impl Freeze for AppReport
impl RefUnwindSafe for AppReport
impl Send for AppReport
impl Sync for AppReport
impl Unpin for AppReport
impl UnsafeUnpin for AppReport
impl UnwindSafe for AppReport
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