Enum netlink_packet_route::link::VlanProtocol
source · #[non_exhaustive]#[repr(u16)]pub enum VlanProtocol {
Ieee8021Q = 33_024,
Ieee8021Ad = 34_984,
}
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 VlanProtocol
impl Clone for VlanProtocol
source§fn clone(&self) -> VlanProtocol
fn clone(&self) -> VlanProtocol
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 VlanProtocol
impl Debug for VlanProtocol
source§impl Default for VlanProtocol
impl Default for VlanProtocol
source§fn default() -> VlanProtocol
fn default() -> VlanProtocol
Returns the “default value” for a type. Read more
source§impl Display for VlanProtocol
impl Display for VlanProtocol
source§impl From<VlanProtocol> for u16
impl From<VlanProtocol> for u16
source§fn from(v: VlanProtocol) -> u16
fn from(v: VlanProtocol) -> u16
Converts to this type from the input type.
source§impl From<u16> for VlanProtocol
impl From<u16> for VlanProtocol
source§impl PartialEq for VlanProtocol
impl PartialEq for VlanProtocol
source§fn eq(&self, other: &VlanProtocol) -> bool
fn eq(&self, other: &VlanProtocol) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for VlanProtocol
impl Eq for VlanProtocol
impl StructuralEq for VlanProtocol
impl StructuralPartialEq for VlanProtocol
Auto Trait Implementations§
impl RefUnwindSafe for VlanProtocol
impl Send for VlanProtocol
impl Sync for VlanProtocol
impl Unpin for VlanProtocol
impl UnwindSafe for VlanProtocol
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