[][src]Enum regex_syntax::ast::ClassAsciiKind

[]
pub enum ClassAsciiKind {
    Alnum,
    Alpha,
    Ascii,
    Blank,
    Cntrl,
    Digit,
    Graph,
    Lower,
    Print,
    Punct,
    Space,
    Upper,
    Word,
    Xdigit,
}
[]

The available ASCII character classes.

Variants

Alnum
[]

[0-9A-Za-z]

Alpha
[]

[A-Za-z]

Ascii
[]

[\x00-\x7F]

Blank
[]

[ \t]

Cntrl
[]

[\x00-\x1F\x7F]

Digit
[]

[0-9]

Graph
[]

[!-~]

Lower
[]

[a-z]

Print
[]

[ -~]

Punct
[]

[!-/:-@\[-{-~]`

Space
[]

[\t\n\v\f\r ]

Upper
[]

[A-Z]

Word
[]

[0-9A-Za-z_]

Xdigit
[]

[0-9A-Fa-f]

Implementations

impl ClassAsciiKind[src][]

pub fn from_name(name: &str) -> Option<ClassAsciiKind>[src][]

Return the corresponding ClassAsciiKind variant for the given name.

The name given should correspond to the lowercase version of the variant name. e.g., cntrl is the name for ClassAsciiKind::Cntrl.

If no variant with the corresponding name exists, then None is returned.

Trait Implementations

impl Clone for ClassAsciiKind[src][+]

impl Debug for ClassAsciiKind[src][+]

impl Eq for ClassAsciiKind[src]

impl PartialEq<ClassAsciiKind> for ClassAsciiKind[src][+]

impl StructuralEq for ClassAsciiKind[src]

impl StructuralPartialEq for ClassAsciiKind[src]

Auto Trait Implementations

impl RefUnwindSafe for ClassAsciiKind

impl Send for ClassAsciiKind

impl Sync for ClassAsciiKind

impl Unpin for ClassAsciiKind

impl UnwindSafe for ClassAsciiKind

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> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

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.