Enum icu_capi::collator::ffi::CollatorNumeric
source · #[repr(C)]pub enum CollatorNumeric {
Off = 0,
On = 1,
}
Variants§
Trait Implementations§
source§impl Clone for CollatorNumeric
impl Clone for CollatorNumeric
source§fn clone(&self) -> CollatorNumeric
fn clone(&self) -> CollatorNumeric
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 CollatorNumeric
impl Debug for CollatorNumeric
source§impl From<CollatorNumeric> for Numeric
impl From<CollatorNumeric> for Numeric
source§fn from(this: CollatorNumeric) -> Self
fn from(this: CollatorNumeric) -> Self
Converts to this type from the input type.
source§impl From<Numeric> for CollatorNumeric
impl From<Numeric> for CollatorNumeric
source§impl Ord for CollatorNumeric
impl Ord for CollatorNumeric
source§fn cmp(&self, other: &CollatorNumeric) -> Ordering
fn cmp(&self, other: &CollatorNumeric) -> 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 CollatorNumeric
impl PartialEq for CollatorNumeric
source§impl PartialOrd for CollatorNumeric
impl PartialOrd for CollatorNumeric
impl Copy for CollatorNumeric
impl Eq for CollatorNumeric
impl StructuralPartialEq for CollatorNumeric
Auto Trait Implementations§
impl Freeze for CollatorNumeric
impl RefUnwindSafe for CollatorNumeric
impl Send for CollatorNumeric
impl Sync for CollatorNumeric
impl Unpin for CollatorNumeric
impl UnwindSafe for CollatorNumeric
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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