Enum rustix::backend::c::macvlan_macaddr_mode
source · #[non_exhaustive]#[repr(u32)]pub(crate) enum macvlan_macaddr_mode {
MACVLAN_MACADDR_ADD = 0,
MACVLAN_MACADDR_DEL = 1,
MACVLAN_MACADDR_FLUSH = 2,
MACVLAN_MACADDR_SET = 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 macvlan_macaddr_mode
impl Clone for macvlan_macaddr_mode
source§fn clone(&self) -> macvlan_macaddr_mode
fn clone(&self) -> macvlan_macaddr_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_macaddr_mode
impl Debug for macvlan_macaddr_mode
source§impl Hash for macvlan_macaddr_mode
impl Hash for macvlan_macaddr_mode
source§impl PartialEq for macvlan_macaddr_mode
impl PartialEq for macvlan_macaddr_mode
source§fn eq(&self, other: &macvlan_macaddr_mode) -> bool
fn eq(&self, other: &macvlan_macaddr_mode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for macvlan_macaddr_mode
impl Eq for macvlan_macaddr_mode
impl StructuralPartialEq for macvlan_macaddr_mode
Auto Trait Implementations§
impl Freeze for macvlan_macaddr_mode
impl RefUnwindSafe for macvlan_macaddr_mode
impl Send for macvlan_macaddr_mode
impl Sync for macvlan_macaddr_mode
impl Unpin for macvlan_macaddr_mode
impl UnwindSafe for macvlan_macaddr_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