#[repr(C)]pub struct ifaliasreq<SA> {
pub ifra_name: InterfaceName,
pub ifra_addr: SA,
pub ifra_broadaddr: SA,
pub ifra_mask: SA,
}
Fields§
§ifra_name: InterfaceName
§ifra_addr: SA
§ifra_broadaddr: SA
§ifra_mask: SA
Trait Implementations§
Source§impl<SA: Clone> Clone for ifaliasreq<SA>
impl<SA: Clone> Clone for ifaliasreq<SA>
Source§fn clone(&self) -> ifaliasreq<SA>
fn clone(&self) -> ifaliasreq<SA>
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<SA: Debug> Debug for ifaliasreq<SA>
impl<SA: Debug> Debug for ifaliasreq<SA>
impl<SA: Copy> Copy for ifaliasreq<SA>
Auto Trait Implementations§
impl<SA> Freeze for ifaliasreq<SA>where
SA: Freeze,
impl<SA> RefUnwindSafe for ifaliasreq<SA>where
SA: RefUnwindSafe,
impl<SA> Send for ifaliasreq<SA>where
SA: Send,
impl<SA> Sync for ifaliasreq<SA>where
SA: Sync,
impl<SA> Unpin for ifaliasreq<SA>where
SA: Unpin,
impl<SA> UnwindSafe for ifaliasreq<SA>where
SA: UnwindSafe,
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