[][src]Enum ucd_parse::CaseStatus

pub enum CaseStatus {
    Common,
    Full,
    Simple,
    Special,
}

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.

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 Eq for CaseStatus
[src]

impl Copy for CaseStatus
[src]

impl Clone for CaseStatus
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<CaseStatus> for CaseStatus
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Default for CaseStatus
[src]

impl Debug for CaseStatus
[src]

impl FromStr for CaseStatus
[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for CaseStatus

impl Sync for CaseStatus

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.