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