#[repr(C)]pub struct ifa_msghdr {
pub ifam_msglen: u16,
pub ifam_version: u8,
pub ifam_type: u8,
pub ifam_addrs: i32,
pub ifam_flags: i32,
pub ifam_index: u16,
pub ifam_metric: i32,
}
Fields§
§ifam_msglen: u16
§ifam_version: u8
§ifam_type: u8
§ifam_addrs: i32
§ifam_flags: i32
§ifam_index: u16
§ifam_metric: i32
Trait Implementations§
Source§impl Clone for ifa_msghdr
impl Clone for ifa_msghdr
Source§fn clone(&self) -> ifa_msghdr
fn clone(&self) -> ifa_msghdr
Returns a copy 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 ifa_msghdr
impl Debug for ifa_msghdr
Source§impl Hash for ifa_msghdr
impl Hash for ifa_msghdr
Source§impl PartialEq for ifa_msghdr
impl PartialEq for ifa_msghdr
impl Copy for ifa_msghdr
impl Eq for ifa_msghdr
impl StructuralPartialEq for ifa_msghdr
Auto Trait Implementations§
impl Freeze for ifa_msghdr
impl RefUnwindSafe for ifa_msghdr
impl Send for ifa_msghdr
impl Sync for ifa_msghdr
impl Unpin for ifa_msghdr
impl UnwindSafe for ifa_msghdr
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