#[repr(C, packed(4))]pub struct if_data64 {Show 25 fields
pub ifi_type: u8,
pub ifi_typelen: u8,
pub ifi_physical: u8,
pub ifi_addrlen: u8,
pub ifi_hdrlen: u8,
pub ifi_recvquota: u8,
pub ifi_xmitquota: u8,
pub ifi_unused1: u8,
pub ifi_mtu: u32,
pub ifi_metric: u32,
pub ifi_baudrate: u64,
pub ifi_ipackets: u64,
pub ifi_ierrors: u64,
pub ifi_opackets: u64,
pub ifi_oerrors: u64,
pub ifi_collisions: u64,
pub ifi_ibytes: u64,
pub ifi_obytes: u64,
pub ifi_imcasts: u64,
pub ifi_omcasts: u64,
pub ifi_iqdrops: u64,
pub ifi_noproto: u64,
pub ifi_recvtiming: u32,
pub ifi_xmittiming: u32,
pub ifi_lastchange: timeval32,
}
Fields§
§ifi_type: u8
§ifi_typelen: u8
§ifi_physical: u8
§ifi_addrlen: u8
§ifi_hdrlen: u8
§ifi_recvquota: u8
§ifi_xmitquota: u8
§ifi_unused1: u8
§ifi_mtu: u32
§ifi_metric: u32
§ifi_baudrate: u64
§ifi_ipackets: u64
§ifi_ierrors: u64
§ifi_opackets: u64
§ifi_oerrors: u64
§ifi_collisions: u64
§ifi_ibytes: u64
§ifi_obytes: u64
§ifi_imcasts: u64
§ifi_omcasts: u64
§ifi_iqdrops: u64
§ifi_noproto: u64
§ifi_recvtiming: u32
§ifi_xmittiming: u32
§ifi_lastchange: timeval32
Trait Implementations§
impl Copy for if_data64
impl Eq for if_data64
Auto Trait Implementations§
impl Freeze for if_data64
impl RefUnwindSafe for if_data64
impl Send for if_data64
impl Sync for if_data64
impl Unpin for if_data64
impl UnwindSafe for if_data64
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more