pub struct EncounterRow {
pub first_seen: u64,
pub last_seen: u64,
pub encounter_count: u64,
pub bytes_sent: u64,
pub bytes_received: u64,
pub successful_forwards: u64,
pub failed_forwards: u64,
}Fields§
§first_seen: u64§last_seen: u64§encounter_count: u64§bytes_sent: u64§bytes_received: u64§successful_forwards: u64§failed_forwards: u64Trait Implementations§
Source§impl Clone for EncounterRow
impl Clone for EncounterRow
Source§fn clone(&self) -> EncounterRow
fn clone(&self) -> EncounterRow
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 moreAuto Trait Implementations§
impl Freeze for EncounterRow
impl RefUnwindSafe for EncounterRow
impl Send for EncounterRow
impl Sync for EncounterRow
impl Unpin for EncounterRow
impl UnsafeUnpin for EncounterRow
impl UnwindSafe for EncounterRow
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