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
Implementations§
source§impl ExceptionBits
impl ExceptionBits
sourcepub(crate) fn from_integer(int: u8) -> Self
pub(crate) fn from_integer(int: u8) -> Self
Extract from the upper half of an ICU4C-format u16
sourcepub(crate) fn to_integer(self) -> u8
pub(crate) fn to_integer(self) -> u8
Convert to an ICU4C-format upper half of u16
Trait Implementations§
source§impl AsULE for ExceptionBits
impl AsULE for ExceptionBits
§type ULE = ExceptionBitsULE
type ULE = ExceptionBitsULE
The ULE type corresponding to
Self
. Read moresource§fn from_unaligned(u: ExceptionBitsULE) -> Self
fn from_unaligned(u: ExceptionBitsULE) -> Self
source§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 PartialEq for ExceptionBits
impl PartialEq for ExceptionBits
source§fn eq(&self, other: &ExceptionBits) -> bool
fn eq(&self, other: &ExceptionBits) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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