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: ExceptionBitsThe 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<'de, 'a> Deserialize<'de> for DecodedException<'a>
 
impl<'de, 'a> Deserialize<'de> for DecodedException<'a>
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<DecodedException<'a>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<DecodedException<'a>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> PartialEq for DecodedException<'a>
 
impl<'a> PartialEq for DecodedException<'a>
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
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