Struct icu::casemap::provider::exception_helpers::ExceptionBits
source · pub struct ExceptionBits {
pub double_width_slots: bool,
pub no_simple_case_folding: bool,
pub negative_delta: bool,
pub is_sensitive: bool,
pub dot_type: DotType,
pub has_conditional_special: bool,
pub has_conditional_fold: bool,
}
Expand description
A bunch of bits associated with each exception.
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fields§
§double_width_slots: bool
Whether or not the slots are double-width.
Unused in ICU4X
no_simple_case_folding: bool
There is no simple casefolding, even if there is a simple lowercase mapping
negative_delta: bool
The delta stored in the Delta
slot is negative
is_sensitive: bool
If the character is case sensitive
dot_type: DotType
The dot type of the character
has_conditional_special: bool
If the character has conditional special casing
has_conditional_fold: bool
If the character has conditional case folding
Trait Implementations§
source§impl AsULE for ExceptionBits
impl AsULE for ExceptionBits
source§type ULE = ExceptionBitsULE
type ULE = ExceptionBitsULE
The ULE type corresponding to
Self
. Read moresource§fn to_unaligned(self) -> ExceptionBitsULE
fn to_unaligned(self) -> ExceptionBitsULE
source§impl Clone for ExceptionBits
impl Clone for ExceptionBits
source§fn clone(&self) -> ExceptionBits
fn clone(&self) -> ExceptionBits
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 ExceptionBits
impl Debug for ExceptionBits
source§impl Default for ExceptionBits
impl Default for ExceptionBits
source§fn default() -> ExceptionBits
fn default() -> ExceptionBits
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ExceptionBits
impl<'de> Deserialize<'de> for ExceptionBits
source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExceptionBits, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExceptionBits, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ExceptionBits
impl PartialEq for ExceptionBits
source§impl Serialize for ExceptionBits
impl Serialize for ExceptionBits
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ExceptionBits
impl Eq for ExceptionBits
impl StructuralPartialEq for ExceptionBits
Auto Trait Implementations§
impl Freeze for ExceptionBits
impl RefUnwindSafe for ExceptionBits
impl Send for ExceptionBits
impl Sync for ExceptionBits
impl Unpin for ExceptionBits
impl UnwindSafe for ExceptionBits
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