Enum linux_raw_sys::netlink::ifla_vxlan_df
source · #[repr(u32)]#[non_exhaustive]pub enum ifla_vxlan_df {
VXLAN_DF_UNSET,
VXLAN_DF_SET,
VXLAN_DF_INHERIT,
__VXLAN_DF_END,
}
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.
Implementations§
source§impl ifla_vxlan_df
impl ifla_vxlan_df
pub const VXLAN_DF_MAX: ifla_vxlan_df = ifla_vxlan_df::VXLAN_DF_INHERIT
Trait Implementations§
source§impl Clone for ifla_vxlan_df
impl Clone for ifla_vxlan_df
source§fn clone(&self) -> ifla_vxlan_df
fn clone(&self) -> ifla_vxlan_df
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 ifla_vxlan_df
impl Debug for ifla_vxlan_df
source§impl Hash for ifla_vxlan_df
impl Hash for ifla_vxlan_df
source§impl PartialEq<ifla_vxlan_df> for ifla_vxlan_df
impl PartialEq<ifla_vxlan_df> for ifla_vxlan_df
source§fn eq(&self, other: &ifla_vxlan_df) -> bool
fn eq(&self, other: &ifla_vxlan_df) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ifla_vxlan_df
impl Eq for ifla_vxlan_df
impl StructuralEq for ifla_vxlan_df
impl StructuralPartialEq for ifla_vxlan_df
Auto Trait Implementations§
impl RefUnwindSafe for ifla_vxlan_df
impl Send for ifla_vxlan_df
impl Sync for ifla_vxlan_df
impl Unpin for ifla_vxlan_df
impl UnwindSafe for ifla_vxlan_df
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