Enum lua_pattern::Class

source ·
pub enum Class {
Show 22 variants Letters, Controls, Digits, Printable, Lowercase, Punctuations, Spaces, Uppercase, Alphanumerics, Hexadecimals, ZeroByte, NotLetters, NotControls, NotDigits, NotPrintable, NotLowercase, NotPunctuations, NotSpaces, NotUppercase, NotAlphanumerics, NotHexadecimals, NotZeroByte,
}
Expand description

A character class, matching any character contained in the class.

Variants§

§

Letters

Matches any letter; equivalent to [a-zA-Z] (%a).

§

Controls

Matches any control character; equivalent to [\0-\31] (%c).

§

Digits

Matches any digit; equivalent to [0-9] (%d).

§

Printable

Matches any printable character except space; equivalent to [\33-\126] (%g).

§

Lowercase

Matches any lowercase letter; equivalent to [a-z] (%l).

§

Punctuations

Matches any punctuation character; equivalent to [!"#$%&'()*+,-./[\%]^_`{|}~] (%p).

§

Spaces

Matches any whitespace character; equivalent to [ \t\n\v\f\r] (%s).

§

Uppercase

Matches any uppercase letter; equivalent to [A-Z] (%u).

§

Alphanumerics

Matches any alphanumeric character (digit or letter); equivalent to [a-zA-Z0-9] (%w).

§

Hexadecimals

Matches any hexadecimal digit; equivalent to [0-9a-fA-F] (%x).

§

ZeroByte

Matches the NULL character / 0 byte; equivalent to \0 (%z).

§

NotLetters

Matches any character, except all letters; equivalent to [^a-zA-Z] (%A).

§

NotControls

Matches any character, except all control characters; equivalent to [^\0-\31] (%C).

§

NotDigits

Matches any character, except all digits; equivalent to [^0-9] (%D).

§

NotPrintable

Matches any character, except all printable characters, but including space; equivalent to [^\33-\126] (%G).

§

NotLowercase

Matches any character, except all lowercase letters; equivalent to [^a-z] (%L).

§

NotPunctuations

Matches any character, except all punctuation characters; equivalent to [^!"#$%&'()*+,-./[\%]^_`{|}~] (%P).

§

NotSpaces

Matches any character, except all whitespace characters; equivalent to [^ \t\n\v\f\r] (%S).

§

NotUppercase

Matches any character, except all uppercase letters; equivalent to [^A-Z] (%U).

§

NotAlphanumerics

Matches any character, except all alphanumeric characters (digits and letters); equivalent to [^a-zA-Z0-9] (%W).

§

NotHexadecimals

Matches any character, except all hexadecimal digits; equivalent to [^0-9a-fA-F] (%X).

§

NotZeroByte

Matches the character, except the NULL character / 0 byte; equivalent to [^\0] (%Z).

Trait Implementations§

source§

impl Clone for Class

source§

fn clone(&self) -> Class

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Class

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Class

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq<Class> for Class

source§

fn eq(&self, other: &Class) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<char> for Class

§

type Error = ()

The type returned in the event of a conversion error.
source§

fn try_from(value: char) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for Class

source§

impl Eq for Class

source§

impl StructuralEq for Class

source§

impl StructuralPartialEq for Class

Auto Trait Implementations§

§

impl RefUnwindSafe for Class

§

impl Send for Class

§

impl Sync for Class

§

impl Unpin for Class

§

impl UnwindSafe for Class

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.