#[repr(i32)]pub enum IpState {
Disabled = 0,
Duplicate = 1,
Down = 2,
Tentative = 3,
OK = 4,
Inaccessible = 5,
}
Expand description
The state of an IP address in the kernel.
Variants§
Trait Implementations§
impl Eq for IpState
impl StructuralPartialEq for IpState
Auto Trait Implementations§
impl Freeze for IpState
impl RefUnwindSafe for IpState
impl Send for IpState
impl Sync for IpState
impl Unpin for IpState
impl UnwindSafe for IpState
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