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