Enum regex_syntax::ast::ClassUnicodeOpKind
[−]
[src]
pub enum ClassUnicodeOpKind { Equal, Colon, NotEqual, }
The type of op used in a Unicode character class.
Variants
Equal
A property set to a specific value, e.g., \p{scx=Katakana}
.
Colon
A property set to a specific value using a colon, e.g.,
\p{scx:Katakana}
.
NotEqual
A property that isn't a particular value, e.g., \p{scx!=Katakana}
.
Methods
impl ClassUnicodeOpKind
[src]
Trait Implementations
impl Clone for ClassUnicodeOpKind
[src]
fn clone(&self) -> ClassUnicodeOpKind
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ClassUnicodeOpKind
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more