Struct icu_casemap::provider::exceptions::DecodedException
source · pub struct DecodedException<'a> {
pub bits: ExceptionBits,
pub lowercase: Option<char>,
pub casefold: Option<char>,
pub uppercase: Option<char>,
pub titlecase: Option<char>,
pub simple_case_delta: Option<u32>,
pub closure: Option<Cow<'a, str>>,
pub full: Option<[Cow<'a, str>; 4]>,
}
Expand description
A decoded Exception
type, with all of the data parsed out into
separate fields.
🚧 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§
§bits: ExceptionBits
The various bit-based data associated with this exception
lowercase: Option<char>
Lowercase mapping
casefold: Option<char>
Case folding
uppercase: Option<char>
Uppercase mapping
titlecase: Option<char>
Titlecase mapping
simple_case_delta: Option<u32>
The simple casefold delta. Its sign is stored in bits.negative_delta
closure: Option<Cow<'a, str>>
Closure mappings
full: Option<[Cow<'a, str>; 4]>
The four full-mappings strings, indexed by MappingKind u8 value
Implementations§
Trait Implementations§
source§impl<'a> Clone for DecodedException<'a>
impl<'a> Clone for DecodedException<'a>
source§fn clone(&self) -> DecodedException<'a>
fn clone(&self) -> DecodedException<'a>
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<'a> Debug for DecodedException<'a>
impl<'a> Debug for DecodedException<'a>
source§impl<'a> Default for DecodedException<'a>
impl<'a> Default for DecodedException<'a>
source§fn default() -> DecodedException<'a>
fn default() -> DecodedException<'a>
Returns the “default value” for a type. Read more
source§impl<'a> PartialEq for DecodedException<'a>
impl<'a> PartialEq for DecodedException<'a>
source§fn eq(&self, other: &DecodedException<'a>) -> bool
fn eq(&self, other: &DecodedException<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for DecodedException<'a>
impl<'a> StructuralPartialEq for DecodedException<'a>
Auto Trait Implementations§
impl<'a> Freeze for DecodedException<'a>
impl<'a> RefUnwindSafe for DecodedException<'a>
impl<'a> Send for DecodedException<'a>
impl<'a> Sync for DecodedException<'a>
impl<'a> Unpin for DecodedException<'a>
impl<'a> UnwindSafe for DecodedException<'a>
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