Enum ucd_parse::CaseStatus
source · pub enum CaseStatus {
Common,
Full,
Simple,
Special,
}
Expand description
The status of a particular case mapping.
Variants§
Common
Case mappings shared by both “simple” and “full” mappings.
Full
A case mapping that changes the number of codepoints.
Simple
A case mapping that doesn’t change the number of codepoints, when it
differs from Full
.
Special
Special cases (currently only for Turkic mappings) that are typically excluded by default. Special cases don’t change the number of codepoints, but may changed the encoding (e.g., UTF-8) length in bytes.
Implementations§
Trait Implementations§
source§impl Clone for CaseStatus
impl Clone for CaseStatus
source§fn clone(&self) -> CaseStatus
fn clone(&self) -> CaseStatus
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 CaseStatus
impl Debug for CaseStatus
source§impl Default for CaseStatus
impl Default for CaseStatus
source§fn default() -> CaseStatus
fn default() -> CaseStatus
Returns the “default value” for a type. Read more
source§impl FromStr for CaseStatus
impl FromStr for CaseStatus
source§impl PartialEq for CaseStatus
impl PartialEq for CaseStatus
source§fn eq(&self, other: &CaseStatus) -> bool
fn eq(&self, other: &CaseStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CaseStatus
impl Eq for CaseStatus
impl StructuralEq for CaseStatus
impl StructuralPartialEq for CaseStatus
Auto Trait Implementations§
impl RefUnwindSafe for CaseStatus
impl Send for CaseStatus
impl Sync for CaseStatus
impl Unpin for CaseStatus
impl UnwindSafe for CaseStatus
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