Enum icu_capi::collator::ffi::CollatorCaseLevel
source · #[repr(C)]pub enum CollatorCaseLevel {
Off = 0,
On = 1,
}
Variants§
Trait Implementations§
source§impl Clone for CollatorCaseLevel
impl Clone for CollatorCaseLevel
source§fn clone(&self) -> CollatorCaseLevel
fn clone(&self) -> CollatorCaseLevel
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 CollatorCaseLevel
impl Debug for CollatorCaseLevel
source§impl From<CaseLevel> for CollatorCaseLevel
impl From<CaseLevel> for CollatorCaseLevel
source§impl From<CollatorCaseLevel> for CaseLevel
impl From<CollatorCaseLevel> for CaseLevel
source§fn from(this: CollatorCaseLevel) -> Self
fn from(this: CollatorCaseLevel) -> Self
Converts to this type from the input type.
source§impl Ord for CollatorCaseLevel
impl Ord for CollatorCaseLevel
source§fn cmp(&self, other: &CollatorCaseLevel) -> Ordering
fn cmp(&self, other: &CollatorCaseLevel) -> 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 CollatorCaseLevel
impl PartialEq for CollatorCaseLevel
source§impl PartialOrd for CollatorCaseLevel
impl PartialOrd for CollatorCaseLevel
impl Copy for CollatorCaseLevel
impl Eq for CollatorCaseLevel
impl StructuralPartialEq for CollatorCaseLevel
Auto Trait Implementations§
impl Freeze for CollatorCaseLevel
impl RefUnwindSafe for CollatorCaseLevel
impl Send for CollatorCaseLevel
impl Sync for CollatorCaseLevel
impl Unpin for CollatorCaseLevel
impl UnwindSafe for CollatorCaseLevel
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