#[repr(C)]pub enum CollatorNumericOrdering {
Off = 0,
On = 1,
}
Variants§
Trait Implementations§
Source§impl Clone for CollatorNumericOrdering
impl Clone for CollatorNumericOrdering
Source§fn clone(&self) -> CollatorNumericOrdering
fn clone(&self) -> CollatorNumericOrdering
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 CollatorNumericOrdering
impl Debug for CollatorNumericOrdering
Source§impl From<CollationNumericOrdering> for CollatorNumericOrdering
impl From<CollationNumericOrdering> for CollatorNumericOrdering
Source§fn from(other: CollationNumericOrdering) -> Self
fn from(other: CollationNumericOrdering) -> Self
Converts to this type from the input type.
Source§impl From<CollatorNumericOrdering> for CollationNumericOrdering
impl From<CollatorNumericOrdering> for CollationNumericOrdering
Source§fn from(this: CollatorNumericOrdering) -> Self
fn from(this: CollatorNumericOrdering) -> Self
Converts to this type from the input type.
Source§impl Ord for CollatorNumericOrdering
impl Ord for CollatorNumericOrdering
Source§fn cmp(&self, other: &CollatorNumericOrdering) -> Ordering
fn cmp(&self, other: &CollatorNumericOrdering) -> 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 CollatorNumericOrdering
impl PartialEq for CollatorNumericOrdering
Source§impl PartialOrd for CollatorNumericOrdering
impl PartialOrd for CollatorNumericOrdering
impl Copy for CollatorNumericOrdering
impl Eq for CollatorNumericOrdering
impl StructuralPartialEq for CollatorNumericOrdering
Auto Trait Implementations§
impl Freeze for CollatorNumericOrdering
impl RefUnwindSafe for CollatorNumericOrdering
impl Send for CollatorNumericOrdering
impl Sync for CollatorNumericOrdering
impl Unpin for CollatorNumericOrdering
impl UnwindSafe for CollatorNumericOrdering
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more