#[repr(u8)]pub enum CondType {
Show 20 variants
Not = 0,
And = 1,
Or = 2,
Streq = 3,
Strdeq = 4,
Strneq = 5,
Strlt = 6,
Strgtr = 7,
Nt = 8,
Ot = 9,
Ef = 10,
Eq = 11,
Ne = 12,
Lt = 13,
Gt = 14,
Le = 15,
Ge = 16,
Regex = 17,
Mod = 18,
Modi = 19,
}Expand description
Condition types for [[ … ]] expressions
Variants§
Not = 0
And = 1
Or = 2
Streq = 3
Strdeq = 4
Strneq = 5
Strlt = 6
Strgtr = 7
Nt = 8
Ot = 9
Ef = 10
Eq = 11
Ne = 12
Lt = 13
Gt = 14
Le = 15
Ge = 16
Regex = 17
Mod = 18
Modi = 19
Trait Implementations§
impl Copy for CondType
impl Eq for CondType
impl StructuralPartialEq for CondType
Auto Trait Implementations§
impl Freeze for CondType
impl RefUnwindSafe for CondType
impl Send for CondType
impl Sync for CondType
impl Unpin for CondType
impl UnsafeUnpin for CondType
impl UnwindSafe for CondType
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