Enum icu_capi::collator::ffi::ICU4XCollatorNumeric
source · #[repr(C)]pub enum ICU4XCollatorNumeric {
Auto = 0,
Off = 1,
On = 2,
}
Variants§
Trait Implementations§
source§impl Clone for ICU4XCollatorNumeric
impl Clone for ICU4XCollatorNumeric
source§fn clone(&self) -> ICU4XCollatorNumeric
fn clone(&self) -> ICU4XCollatorNumeric
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 ICU4XCollatorNumeric
impl Debug for ICU4XCollatorNumeric
source§impl From<Numeric> for ICU4XCollatorNumeric
impl From<Numeric> for ICU4XCollatorNumeric
source§fn from(numeric: Numeric) -> ICU4XCollatorNumeric
fn from(numeric: Numeric) -> ICU4XCollatorNumeric
Converts to this type from the input type.
source§impl Ord for ICU4XCollatorNumeric
impl Ord for ICU4XCollatorNumeric
source§fn cmp(&self, other: &ICU4XCollatorNumeric) -> Ordering
fn cmp(&self, other: &ICU4XCollatorNumeric) -> 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 ICU4XCollatorNumeric
impl PartialEq for ICU4XCollatorNumeric
source§fn eq(&self, other: &ICU4XCollatorNumeric) -> bool
fn eq(&self, other: &ICU4XCollatorNumeric) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ICU4XCollatorNumeric
impl PartialOrd for ICU4XCollatorNumeric
source§fn partial_cmp(&self, other: &ICU4XCollatorNumeric) -> Option<Ordering>
fn partial_cmp(&self, other: &ICU4XCollatorNumeric) -> 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 moreimpl Copy for ICU4XCollatorNumeric
impl Eq for ICU4XCollatorNumeric
impl StructuralPartialEq for ICU4XCollatorNumeric
Auto Trait Implementations§
impl Freeze for ICU4XCollatorNumeric
impl RefUnwindSafe for ICU4XCollatorNumeric
impl Send for ICU4XCollatorNumeric
impl Sync for ICU4XCollatorNumeric
impl Unpin for ICU4XCollatorNumeric
impl UnwindSafe for ICU4XCollatorNumeric
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> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
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