#[repr(isize)]pub enum NSComparisonResult {
Ascending = -1,
Same = 0,
Descending = 1,
}
Available on crate feature
NSObjCRuntime
only.Expand description
Constants that indicate sort order.
Variants§
Ascending = -1
The left operand is smaller than the right operand.
Same = 0
The two operands are equal.
Descending = 1
The left operand is greater than the right operand.
Trait Implementations§
source§impl Clone for NSComparisonResult
impl Clone for NSComparisonResult
source§fn clone(&self) -> NSComparisonResult
fn clone(&self) -> NSComparisonResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NSComparisonResult
impl Debug for NSComparisonResult
source§impl Default for NSComparisonResult
impl Default for NSComparisonResult
source§impl Encode for NSComparisonResult
impl Encode for NSComparisonResult
source§impl From<NSComparisonResult> for Ordering
impl From<NSComparisonResult> for Ordering
source§fn from(comparison_result: NSComparisonResult) -> Self
fn from(comparison_result: NSComparisonResult) -> Self
Converts to this type from the input type.
source§impl From<Ordering> for NSComparisonResult
impl From<Ordering> for NSComparisonResult
source§impl Hash for NSComparisonResult
impl Hash for NSComparisonResult
source§impl Ord for NSComparisonResult
impl Ord for NSComparisonResult
source§fn cmp(&self, other: &NSComparisonResult) -> Ordering
fn cmp(&self, other: &NSComparisonResult) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for NSComparisonResult
impl PartialEq for NSComparisonResult
source§fn eq(&self, other: &NSComparisonResult) -> bool
fn eq(&self, other: &NSComparisonResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for NSComparisonResult
impl PartialOrd for NSComparisonResult
source§fn partial_cmp(&self, other: &NSComparisonResult) -> Option<Ordering>
fn partial_cmp(&self, other: &NSComparisonResult) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl RefEncode for NSComparisonResult
impl RefEncode for NSComparisonResult
source§const ENCODING_REF: Encoding = _
const ENCODING_REF: Encoding = _
The Objective-C type-encoding for a reference of this type. Read more
impl Copy 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
source§impl<T> EncodeArgument for Twhere
T: Encode,
impl<T> EncodeArgument for Twhere
T: Encode,
source§const ENCODING_ARGUMENT: Encoding = T::ENCODING
const ENCODING_ARGUMENT: Encoding = T::ENCODING
The Objective-C type-encoding for this type.
source§impl<T> EncodeReturn for Twhere
T: Encode,
impl<T> EncodeReturn for Twhere
T: Encode,
source§const ENCODING_RETURN: Encoding = T::ENCODING
const ENCODING_RETURN: Encoding = T::ENCODING
The Objective-C type-encoding for this type.