Struct icu_casemap::provider::data::NonExceptionData
source · pub struct NonExceptionData {
pub sensitive: bool,
pub dot_type: DotType,
}
Expand description
Data that is stored in CaseMapData when it is not an exception
🚧 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§
§sensitive: bool
Whether or not the type is case-sensitive
dot_type: DotType
The “dot type”
Trait Implementations§
source§impl Clone for NonExceptionData
impl Clone for NonExceptionData
source§fn clone(&self) -> NonExceptionData
fn clone(&self) -> NonExceptionData
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 Debug for NonExceptionData
impl Debug for NonExceptionData
source§impl PartialEq for NonExceptionData
impl PartialEq for NonExceptionData
source§fn eq(&self, other: &NonExceptionData) -> bool
fn eq(&self, other: &NonExceptionData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for NonExceptionData
impl Eq for NonExceptionData
impl StructuralPartialEq for NonExceptionData
Auto Trait Implementations§
impl Freeze for NonExceptionData
impl RefUnwindSafe for NonExceptionData
impl Send for NonExceptionData
impl Sync for NonExceptionData
impl Unpin for NonExceptionData
impl UnwindSafe for NonExceptionData
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