Enum linux_raw_sys::netlink::macvlan_mode
source · #[non_exhaustive]#[repr(u32)]pub enum macvlan_mode {
MACVLAN_MODE_PRIVATE = 1,
MACVLAN_MODE_VEPA = 2,
MACVLAN_MODE_BRIDGE = 4,
MACVLAN_MODE_PASSTHRU = 8,
MACVLAN_MODE_SOURCE = 16,
}
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.
MACVLAN_MODE_PRIVATE = 1
MACVLAN_MODE_VEPA = 2
MACVLAN_MODE_BRIDGE = 4
MACVLAN_MODE_PASSTHRU = 8
MACVLAN_MODE_SOURCE = 16
Trait Implementations§
source§impl Clone for macvlan_mode
impl Clone for macvlan_mode
source§fn clone(&self) -> macvlan_mode
fn clone(&self) -> macvlan_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 macvlan_mode
impl Debug for macvlan_mode
source§impl Hash for macvlan_mode
impl Hash for macvlan_mode
source§impl PartialEq for macvlan_mode
impl PartialEq for macvlan_mode
source§fn eq(&self, other: &macvlan_mode) -> bool
fn eq(&self, other: &macvlan_mode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for macvlan_mode
impl Eq for macvlan_mode
impl StructuralPartialEq for macvlan_mode
Auto Trait Implementations§
impl Freeze for macvlan_mode
impl RefUnwindSafe for macvlan_mode
impl Send for macvlan_mode
impl Sync for macvlan_mode
impl Unpin for macvlan_mode
impl UnwindSafe for macvlan_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