[][src]Enum mini_haskell::utils::char::Unicode

pub enum Unicode {
    Alpha,
    AlphaNum,
    Numeric,
    Digit,
    Lower,
    Upper,
    White,
    Symbol,
    Punct,
}

Unicode character categories.

Variants

Alpha

Unicode letters: Alphabetic.

AlphaNum

Unicode letter and numeric.

Numeric

Unicode numeric: Nd, Nl, No.

Digit

Unicode decimal digits: Nd.

Lower

Unicode lowercase letters: Lowercase.

Upper

Unicode uppercase letters: Uppercase.

White

Unicode whitespaces: White_Space.

Symbol

Unicode symbol: Sm, Sc, Sk, So.

Punct

Unicode punctuation: Pc, Pd, Ps, Pe, Pi, Pf.

Trait Implementations

impl CharPredicate for Unicode[src]

Auto Trait Implementations

impl RefUnwindSafe for Unicode

impl Send for Unicode

impl Sync for Unicode

impl Unpin for Unicode

impl UnwindSafe for Unicode

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.