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: boolWhether or not the slots are double-width.
Unused in ICU4X
no_simple_case_folding: boolThere is no simple casefolding, even if there is a simple lowercase mapping
negative_delta: boolThe delta stored in the Delta slot is negative
is_sensitive: boolIf the character is case sensitive
dot_type: DotTypeThe dot type of the character
has_conditional_special: boolIf the character has conditional special casing
has_conditional_fold: boolIf 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
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§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