Enum ucd_parse::CaseStatus
[−]
[src]
pub enum CaseStatus {
Common,
Full,
Simple,
Special,
}The status of a particular case mapping.
Variants
CommonCase mappings shared by both "simple" and "full" mappings.
FullA case mapping that changes the number of codepoints.
SimpleA case mapping that doesn't change the number of codepoints, when it
differs from Full.
SpecialSpecial 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.
Methods
impl CaseStatus[src]
pub fn is_fixed(&self) -> bool[src]
Returns true if and only if this status indicates a case mapping that won't change the number of codepoints.
Trait Implementations
impl Clone for CaseStatus[src]
fn clone(&self) -> CaseStatus[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Copy for CaseStatus[src]
impl Debug for CaseStatus[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Eq for CaseStatus[src]
impl PartialEq for CaseStatus[src]
fn eq(&self, __arg_0: &CaseStatus) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Default for CaseStatus[src]
fn default() -> CaseStatus[src]
Returns the "default value" for a type. Read more