Enum Plfs
#[repr(u8)]pub enum Plfs {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Payload Filtering Selection
Value on reset: 0
Variants§
_00 = 0
0: Match upon a payload contents against an exact target value
_01 = 1
1: Match upon a payload value greater than or equal to a specified target value
_10 = 2
2: Match upon a payload value smaller than or equal to a specified target value
_11 = 3
3: Match upon a payload value inside a range, greater than or equal to a specified lower limit and smaller than or equal a specified upper limit
Trait Implementations§
impl Copy for Plfs
impl Eq for Plfs
impl IsEnum for Plfs
impl StructuralPartialEq for Plfs
Auto Trait Implementations§
impl Freeze for Plfs
impl RefUnwindSafe for Plfs
impl Send for Plfs
impl Sync for Plfs
impl Unpin for Plfs
impl UnwindSafe for Plfs
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