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<'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>
source§impl<'a> Serialize for DecodedException<'a>
impl<'a> Serialize for DecodedException<'a>
source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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