Struct icu_casemap::provider::exception_helpers::ExceptionBitsULE

source ยท
#[repr(transparent)]
pub struct ExceptionBitsULE(pub u8);
Expand description

The bitflags on an exception header.

Format from icu4c, documented in casepropsbuilder.cpp, shifted 8 bits since ICU4C has this packed alongside a SlotPresence

           0  Double-width slots. If set, then each optional slot is stored as two
              elements of the array (high and low halves of 32-bit values) instead of
              a single element.
           1  Has no simple case folding, even if there is a simple lowercase mapping
          2  The value in the delta slot is negative
          3  Is case-sensitive (not exposed)
      4..5  Dot type
          6  Has conditional special casing
          7  Has conditional case folding

All bits are valid, though in ICU4X data bits 0 and 2 are not used

๐Ÿšง 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.

Tuple Fieldsยง

ยง0: u8

Implementationsยง

sourceยง

impl ExceptionBitsULE

sourceยง

impl ExceptionBitsULE

source

pub fn double_width_slots(self) -> bool

Whether or not the slots are double-width.

Unused in ICU4X

source

pub fn no_simple_case_folding(self) -> bool

There is no simple casefolding, even if there is a simple lowercase mapping

source

pub fn negative_delta(self) -> bool

The delta stored in the Delta slot is negative

source

pub fn is_sensitive(self) -> bool

If the character is case sensitive

source

pub fn has_conditional_special(self) -> bool

If the character has conditional special casing

source

pub fn has_conditional_fold(self) -> bool

If the character has conditional case folding

source

pub fn dot_type(self) -> DotType

The dot type of the character

Trait Implementationsยง

sourceยง

impl Clone for ExceptionBitsULE

sourceยง

fn clone(&self) -> ExceptionBitsULE

Returns a copy of the value. Read more
1.0.0 ยท sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
sourceยง

impl Debug for ExceptionBitsULE

sourceยง

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
sourceยง

impl PartialEq for ExceptionBitsULE

sourceยง

fn eq(&self, other: &ExceptionBitsULE) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 ยท sourceยง

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
sourceยง

impl ULE for ExceptionBitsULE

sourceยง

fn validate_byte_slice(bytes: &[u8]) -> Result<(), ZeroVecError>

Validates a byte slice, &[u8]. Read more
sourceยง

fn parse_byte_slice(bytes: &[u8]) -> Result<&[Self], ZeroVecError>

Parses a byte slice, &[u8], and return it as &[Self] with the same lifetime. Read more
sourceยง

unsafe fn from_byte_slice_unchecked(bytes: &[u8]) -> &[Self]

Takes a byte slice, &[u8], and return it as &[Self] with the same lifetime, assuming that this byte slice has previously been run through Self::parse_byte_slice() with success. Read more
sourceยง

fn as_byte_slice(slice: &[Self]) -> &[u8] โ“˜

Given &[Self], returns a &[u8] with the same lifetime. Read more
sourceยง

impl Copy for ExceptionBitsULE

sourceยง

impl Eq for ExceptionBitsULE

sourceยง

impl StructuralPartialEq for ExceptionBitsULE

Auto Trait Implementationsยง

Blanket Implementationsยง

sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T> ToOwned for T
where T: Clone,

ยง

type Owned = T

The resulting type after obtaining ownership.
sourceยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
sourceยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

ยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

ยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
sourceยง

impl<T> ErasedDestructor for T
where T: 'static,

sourceยง

impl<T> MaybeSendSync for T