pub enum RtextFilter {
Vf = 1,
Brvlan = 2,
BrvlanCompressed = 4,
SkipStats = 8,
Mrp = 16,
CfmConfig = 32,
CfmStatus = 64,
Mst = 128,
}Available on crate feature
rt-link only.Expand description
Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
Vf = 1
Brvlan = 2
BrvlanCompressed = 4
SkipStats = 8
Mrp = 16
CfmConfig = 32
CfmStatus = 64
Mst = 128
Implementations§
Source§impl RtextFilter
impl RtextFilter
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for RtextFilter
impl Clone for RtextFilter
Source§fn clone(&self) -> RtextFilter
fn clone(&self) -> RtextFilter
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 RtextFilter
impl Debug for RtextFilter
impl Copy for RtextFilter
Auto Trait Implementations§
impl Freeze for RtextFilter
impl RefUnwindSafe for RtextFilter
impl Send for RtextFilter
impl Sync for RtextFilter
impl Unpin for RtextFilter
impl UnwindSafe for RtextFilter
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