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§
Source§impl Clone for InterfaceIndexOrAddress
impl Clone for InterfaceIndexOrAddress
Source§fn clone(&self) -> InterfaceIndexOrAddress
fn clone(&self) -> InterfaceIndexOrAddress
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 InterfaceIndexOrAddress
impl Debug for InterfaceIndexOrAddress
impl Copy for InterfaceIndexOrAddress
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