Enum Idfs
#[repr(u8)]pub enum Idfs {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
ID Filtering Selection
Value on reset: 0
Variants§
_00 = 0
0: Match upon a ID contents against an exact target value
_01 = 1
1: Match upon a ID value greater than or equal to a specified target value
_10 = 2
2: Match upon a ID value smaller than or equal to a specified target value
_11 = 3
3: Match upon a ID 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 Idfs
impl Eq for Idfs
impl IsEnum 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