#[repr(C)]pub enum ICU4XCollatorAlternateHandling {
Auto = 0,
NonIgnorable = 1,
Shifted = 2,
}
Variants§
Trait Implementations§
source§impl Clone for ICU4XCollatorAlternateHandling
impl Clone for ICU4XCollatorAlternateHandling
source§fn clone(&self) -> ICU4XCollatorAlternateHandling
fn clone(&self) -> ICU4XCollatorAlternateHandling
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 From<AlternateHandling> for ICU4XCollatorAlternateHandling
impl From<AlternateHandling> for ICU4XCollatorAlternateHandling
source§fn from(alternate_handling: AlternateHandling) -> ICU4XCollatorAlternateHandling
fn from(alternate_handling: AlternateHandling) -> ICU4XCollatorAlternateHandling
Converts to this type from the input type.
source§impl From<ICU4XCollatorAlternateHandling> for Option<AlternateHandling>
impl From<ICU4XCollatorAlternateHandling> for Option<AlternateHandling>
source§fn from(
alternate_handling: ICU4XCollatorAlternateHandling,
) -> Option<AlternateHandling>
fn from( alternate_handling: ICU4XCollatorAlternateHandling, ) -> Option<AlternateHandling>
Converts to this type from the input type.
source§impl Ord for ICU4XCollatorAlternateHandling
impl Ord for ICU4XCollatorAlternateHandling
source§fn cmp(&self, other: &ICU4XCollatorAlternateHandling) -> Ordering
fn cmp(&self, other: &ICU4XCollatorAlternateHandling) -> 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 ICU4XCollatorAlternateHandling
impl PartialEq for ICU4XCollatorAlternateHandling
source§fn eq(&self, other: &ICU4XCollatorAlternateHandling) -> bool
fn eq(&self, other: &ICU4XCollatorAlternateHandling) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ICU4XCollatorAlternateHandling
impl PartialOrd for ICU4XCollatorAlternateHandling
source§fn partial_cmp(
&self,
other: &ICU4XCollatorAlternateHandling,
) -> Option<Ordering>
fn partial_cmp( &self, other: &ICU4XCollatorAlternateHandling, ) -> 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 ICU4XCollatorAlternateHandling
impl Eq for ICU4XCollatorAlternateHandling
impl StructuralPartialEq for ICU4XCollatorAlternateHandling
Auto Trait Implementations§
impl Freeze for ICU4XCollatorAlternateHandling
impl RefUnwindSafe for ICU4XCollatorAlternateHandling
impl Send for ICU4XCollatorAlternateHandling
impl Sync for ICU4XCollatorAlternateHandling
impl Unpin for ICU4XCollatorAlternateHandling
impl UnwindSafe for ICU4XCollatorAlternateHandling
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