Struct icu_capi::collator::ffi::CollatorResolvedOptionsV1
source · #[repr(C)]pub struct CollatorResolvedOptionsV1 {
pub strength: CollatorStrength,
pub alternate_handling: CollatorAlternateHandling,
pub case_first: CollatorCaseFirst,
pub max_variable: CollatorMaxVariable,
pub case_level: CollatorCaseLevel,
pub numeric: CollatorNumeric,
pub backward_second_level: CollatorBackwardSecondLevel,
}
Fields§
§strength: CollatorStrength
§alternate_handling: CollatorAlternateHandling
§case_first: CollatorCaseFirst
§max_variable: CollatorMaxVariable
§case_level: CollatorCaseLevel
§numeric: CollatorNumeric
§backward_second_level: CollatorBackwardSecondLevel
Trait Implementations§
source§impl From<ResolvedCollatorOptions> for CollatorResolvedOptionsV1
impl From<ResolvedCollatorOptions> for CollatorResolvedOptionsV1
source§fn from(options: ResolvedCollatorOptions) -> CollatorResolvedOptionsV1
fn from(options: ResolvedCollatorOptions) -> CollatorResolvedOptionsV1
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CollatorResolvedOptionsV1
impl RefUnwindSafe for CollatorResolvedOptionsV1
impl Send for CollatorResolvedOptionsV1
impl Sync for CollatorResolvedOptionsV1
impl Unpin for CollatorResolvedOptionsV1
impl UnwindSafe for CollatorResolvedOptionsV1
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> 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