pub struct ExtendedTransit {
pub delay: u32,
}Expand description
Extended Transit - Format (0,1039)
Delay for sampled packet traversing switch
§XDR Definition (sFlow Transit)
/* Delay for sampled packet traversing switch */
/* opaque = flow_data; enterprise = 0; format = 1039 */
struct extended_transit {
unsigned int delay; /* transit delay in nanoseconds
0xffffffff indicates value >= 0xffffffff */
}Fields§
§delay: u32Transit delay in nanoseconds (0xffffffff indicates value >= 0xffffffff)
Trait Implementations§
Source§impl Clone for ExtendedTransit
impl Clone for ExtendedTransit
Source§fn clone(&self) -> ExtendedTransit
fn clone(&self) -> ExtendedTransit
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 ExtendedTransit
impl Debug for ExtendedTransit
Source§impl PartialEq for ExtendedTransit
impl PartialEq for ExtendedTransit
impl Eq for ExtendedTransit
impl StructuralPartialEq for ExtendedTransit
Auto Trait Implementations§
impl Freeze for ExtendedTransit
impl RefUnwindSafe for ExtendedTransit
impl Send for ExtendedTransit
impl Sync for ExtendedTransit
impl Unpin for ExtendedTransit
impl UnwindSafe for ExtendedTransit
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