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