#[repr(C)]pub enum NSComparisonResult {
OrderedAscending = -1,
OrderedSame = 0,
OrderedDescending = 1,
}
Expand description
Constants that indicate sort order.
Variants§
OrderedAscending = -1
The left operand is smaller than the right operand.
OrderedSame = 0
The two operands are equal.
OrderedDescending = 1
The left operand is greater than the right operand.
Trait Implementations§
Source§impl Debug for NSComparisonResult
impl Debug for NSComparisonResult
Source§impl PartialEq for NSComparisonResult
impl PartialEq for NSComparisonResult
impl Eq for NSComparisonResult
impl StructuralPartialEq for NSComparisonResult
Auto Trait Implementations§
impl Freeze for NSComparisonResult
impl RefUnwindSafe for NSComparisonResult
impl Send for NSComparisonResult
impl Sync for NSComparisonResult
impl Unpin for NSComparisonResult
impl UnwindSafe for NSComparisonResult
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