pub enum IfaFlags {
Secondary = 1,
Nodad = 2,
Optimistic = 4,
Dadfailed = 8,
Homeaddress = 16,
Deprecated = 32,
Tentative = 64,
Permanent = 128,
Managetempaddr = 256,
Noprefixroute = 512,
Mcautojoin = 1_024,
StablePrivacy = 2_048,
}Available on crate feature
rt-addr only.Expand description
Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
Secondary = 1
Nodad = 2
Optimistic = 4
Dadfailed = 8
Homeaddress = 16
Deprecated = 32
Tentative = 64
Permanent = 128
Managetempaddr = 256
Noprefixroute = 512
Mcautojoin = 1_024
StablePrivacy = 2_048
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IfaFlags
impl RefUnwindSafe for IfaFlags
impl Send for IfaFlags
impl Sync for IfaFlags
impl Unpin for IfaFlags
impl UnwindSafe for IfaFlags
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