#[non_exhaustive]#[repr(u32)]pub enum ifla_geneve_df {
GENEVE_DF_UNSET = 0,
GENEVE_DF_SET = 1,
GENEVE_DF_INHERIT = 2,
__GENEVE_DF_END = 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.
Implementations§
Source§impl ifla_geneve_df
impl ifla_geneve_df
pub const GENEVE_DF_MAX: ifla_geneve_df = ifla_geneve_df::GENEVE_DF_INHERIT
Trait Implementations§
Source§impl Clone for ifla_geneve_df
impl Clone for ifla_geneve_df
Source§fn clone(&self) -> ifla_geneve_df
fn clone(&self) -> ifla_geneve_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_geneve_df
impl Debug for ifla_geneve_df
Source§impl Hash for ifla_geneve_df
impl Hash for ifla_geneve_df
Source§impl PartialEq for ifla_geneve_df
impl PartialEq for ifla_geneve_df
impl Copy for ifla_geneve_df
impl Eq for ifla_geneve_df
impl StructuralPartialEq for ifla_geneve_df
Auto Trait Implementations§
impl Freeze for ifla_geneve_df
impl RefUnwindSafe for ifla_geneve_df
impl Send for ifla_geneve_df
impl Sync for ifla_geneve_df
impl Unpin for ifla_geneve_df
impl UnwindSafe for ifla_geneve_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