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 duplicate of the value. Read more
1.0.0 (const: unstable) · 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
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> UnsafeUnpin 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