pub enum VlanProtocols {
_8021q = 33_024,
_8021ad = 34_984,
}Available on crate feature
rt-link only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Implementations§
Source§impl VlanProtocols
impl VlanProtocols
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for VlanProtocols
impl Clone for VlanProtocols
Source§fn clone(&self) -> VlanProtocols
fn clone(&self) -> VlanProtocols
Returns a duplicate 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 VlanProtocols
impl Debug for VlanProtocols
impl Copy for VlanProtocols
Auto Trait Implementations§
impl Freeze for VlanProtocols
impl RefUnwindSafe for VlanProtocols
impl Send for VlanProtocols
impl Sync for VlanProtocols
impl Unpin for VlanProtocols
impl UnwindSafe for VlanProtocols
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