pub enum InterfaceIndexOrAddress {
Index(u32),
Address(Ipv4Addr),
}
Expand description
A local interface specified by its index or an address assigned to it.
Index(0)
and Address(Ipv4Addr::UNSPECIFIED)
are equivalent and indicate
that an appropriate interface should be selected by the system.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InterfaceIndexOrAddress
impl RefUnwindSafe for InterfaceIndexOrAddress
impl Send for InterfaceIndexOrAddress
impl Sync for InterfaceIndexOrAddress
impl Unpin for InterfaceIndexOrAddress
impl UnwindSafe for InterfaceIndexOrAddress
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes
Size for each variant:
Index
: 7 bytesAddress
: 4 bytes