Enum linux_raw_sys::netlink::ipvlan_mode
source · #[non_exhaustive]#[repr(u32)]pub enum ipvlan_mode {
IPVLAN_MODE_L2 = 0,
IPVLAN_MODE_L3 = 1,
IPVLAN_MODE_L3S = 2,
IPVLAN_MODE_MAX = 3,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for ipvlan_mode
impl Clone for ipvlan_mode
source§fn clone(&self) -> ipvlan_mode
fn clone(&self) -> ipvlan_mode
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 ipvlan_mode
impl Debug for ipvlan_mode
source§impl Hash for ipvlan_mode
impl Hash for ipvlan_mode
source§impl PartialEq for ipvlan_mode
impl PartialEq for ipvlan_mode
source§fn eq(&self, other: &ipvlan_mode) -> bool
fn eq(&self, other: &ipvlan_mode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ipvlan_mode
impl Eq for ipvlan_mode
impl StructuralPartialEq for ipvlan_mode
Auto Trait Implementations§
impl Freeze for ipvlan_mode
impl RefUnwindSafe for ipvlan_mode
impl Send for ipvlan_mode
impl Sync for ipvlan_mode
impl Unpin for ipvlan_mode
impl UnwindSafe for ipvlan_mode
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