#[repr(u8)]pub enum Plfs {
MATCH_EXACT = 0,
MATCH_GTE = 1,
MATCH_LTE = 2,
MATCH_RANGE = 3,
}Variants§
MATCH_EXACT = 0
Match payload contents to an exact target value
MATCH_GTE = 1
Match a payload value greater than or equal to a specified target value
MATCH_LTE = 2
Match a payload value smaller than or equal to a specified target value
MATCH_RANGE = 3
Match upon a payload value within a range of values, inclusive
Implementations§
Trait Implementations§
Source§impl Ord for Plfs
impl Ord for Plfs
Source§impl PartialOrd for Plfs
impl PartialOrd for Plfs
impl Copy for Plfs
impl Eq 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