[−][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
[0-9A-Za-z]
[A-Za-z]
[\x00-\x7F]
[ \t]
[\x00-\x1F\x7F]
[0-9]
[!-~]
[a-z]
[ -~]
[!-/:-@\[-{-~]`
[\t\n\v\f\r ]
[A-Z]
[0-9A-Za-z_]
[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][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src][+]
T: ?Sized,
impl<T> From<T> for T[src][+]
impl<T, U> Into<U> for T where
U: From<T>, [src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src][+]
U: TryFrom<T>,