#[repr(u64)]pub enum NSPredicateOperatorType {
Show 14 variants
LessThan = 0,
LessThanOrEqualTo = 1,
GreaterThan = 2,
GreaterThanOrEqualTo = 3,
EqualTo = 4,
NotEqualTo = 5,
Matches = 6,
Like = 7,
BeginsWith = 8,
EndsWith = 9,
In = 10,
CustomSelector = 11,
Contains = 99,
Between = 100,
}
Variants§
LessThan = 0
LessThanOrEqualTo = 1
GreaterThan = 2
GreaterThanOrEqualTo = 3
EqualTo = 4
NotEqualTo = 5
Matches = 6
Like = 7
BeginsWith = 8
EndsWith = 9
In = 10
CustomSelector = 11
Contains = 99
Between = 100
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NSPredicateOperatorType
impl RefUnwindSafe for NSPredicateOperatorType
impl Send for NSPredicateOperatorType
impl Sync for NSPredicateOperatorType
impl Unpin for NSPredicateOperatorType
impl UnwindSafe for NSPredicateOperatorType
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