pub struct HumanIpdvPair {
pub previous_logical_seq: u64,
pub current_logical_seq: u64,
pub rtt_ipdv: Duration,
pub send_ipdv: Option<Duration>,
pub receive_ipdv: Option<Duration>,
}Fields§
§previous_logical_seq: u64§current_logical_seq: u64§rtt_ipdv: Duration§send_ipdv: Option<Duration>§receive_ipdv: Option<Duration>Trait Implementations§
Source§impl Clone for HumanIpdvPair
impl Clone for HumanIpdvPair
Source§fn clone(&self) -> HumanIpdvPair
fn clone(&self) -> HumanIpdvPair
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 moreSource§impl Debug for HumanIpdvPair
impl Debug for HumanIpdvPair
Source§impl From<IpdvPairUpdate> for HumanIpdvPair
Available on crate feature stats only.
impl From<IpdvPairUpdate> for HumanIpdvPair
Available on crate feature
stats only.Source§fn from(value: IpdvPairUpdate) -> Self
fn from(value: IpdvPairUpdate) -> Self
Converts to this type from the input type.
Source§impl PartialEq for HumanIpdvPair
impl PartialEq for HumanIpdvPair
Source§fn eq(&self, other: &HumanIpdvPair) -> bool
fn eq(&self, other: &HumanIpdvPair) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for HumanIpdvPair
impl Eq for HumanIpdvPair
impl StructuralPartialEq for HumanIpdvPair
Auto Trait Implementations§
impl Freeze for HumanIpdvPair
impl RefUnwindSafe for HumanIpdvPair
impl Send for HumanIpdvPair
impl Sync for HumanIpdvPair
impl Unpin for HumanIpdvPair
impl UnsafeUnpin for HumanIpdvPair
impl UnwindSafe for HumanIpdvPair
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