Enum regex_syntax::ast::ClassAsciiKind [−][src]
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]
fn clone(&self) -> ClassAsciiKind
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for ClassAsciiKind
[src]
impl Eq for ClassAsciiKind
[src]
impl PartialEq<ClassAsciiKind> for ClassAsciiKind
[src]
fn eq(&self, other: &ClassAsciiKind) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[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,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,