#[repr(C)]pub struct if_msghdr {
pub ifm_msglen: c_ushort,
pub ifm_version: c_uchar,
pub ifm_type: c_uchar,
pub ifm_hdrlen: c_ushort,
pub ifm_index: c_ushort,
pub ifm_tableid: c_ushort,
pub ifm_pad1: c_uchar,
pub ifm_pad2: c_uchar,
pub ifm_addrs: c_int,
pub ifm_flags: c_int,
pub ifm_xflags: c_int,
pub ifm_data: if_data,
}
Fields
ifm_msglen: c_ushort
ifm_version: c_uchar
ifm_type: c_uchar
ifm_hdrlen: c_ushort
ifm_index: c_ushort
ifm_tableid: c_ushort
ifm_pad1: c_uchar
ifm_pad2: c_uchar
ifm_addrs: c_int
ifm_flags: c_int
ifm_xflags: c_int
ifm_data: if_data
Trait Implementations
sourceimpl Hash for if_msghdr
impl Hash for if_msghdr
sourcefn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)
Feeds this value into the given [Hasher
]. Read more
1.3.0fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Copy for if_msghdr
impl Eq for if_msghdr
impl StructuralEq for if_msghdr
impl StructuralPartialEq for if_msghdr
Auto Trait Implementations
impl RefUnwindSafe for if_msghdr
impl Send for if_msghdr
impl Sync for if_msghdr
impl Unpin for if_msghdr
impl UnwindSafe for if_msghdr
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more