#[repr(C)]pub struct if_data {Show 29 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: u32,
pub ifi_ipackets: u32,
pub ifi_ierrors: u32,
pub ifi_opackets: u32,
pub ifi_oerrors: u32,
pub ifi_collisions: u32,
pub ifi_ibytes: u32,
pub ifi_obytes: u32,
pub ifi_imcasts: u32,
pub ifi_omcasts: u32,
pub ifi_iqdrops: u32,
pub ifi_noproto: u32,
pub ifi_recvtiming: u32,
pub ifi_xmittiming: u32,
pub ifi_lastchange: timeval32,
pub ifi_unused2: u32,
pub ifi_hwassist: u32,
pub ifi_reserved1: u32,
pub ifi_reserved2: u32,
}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: u32§ifi_ipackets: u32§ifi_ierrors: u32§ifi_opackets: u32§ifi_oerrors: u32§ifi_collisions: u32§ifi_ibytes: u32§ifi_obytes: u32§ifi_imcasts: u32§ifi_omcasts: u32§ifi_iqdrops: u32§ifi_noproto: u32§ifi_recvtiming: u32§ifi_xmittiming: u32§ifi_lastchange: timeval32§ifi_unused2: u32§ifi_hwassist: u32§ifi_reserved1: u32§ifi_reserved2: u32Trait Implementations§
impl Copy for if_data
impl Eq for if_data
impl StructuralPartialEq for if_data
Auto Trait Implementations§
impl Freeze for if_data
impl RefUnwindSafe for if_data
impl Send for if_data
impl Sync for if_data
impl Unpin for if_data
impl UnwindSafe for if_data
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