Enum regex_syntax::ast::ClassUnicodeKind [−][src]
pub enum ClassUnicodeKind {
OneLetter(char),
Named(String),
NamedValue {
op: ClassUnicodeOpKind,
name: String,
value: String,
},
}The available forms of Unicode character classes.
Variants
OneLetter(char)A one letter abbreviated class, e.g., \pN.
Named(String)A binary property, general category or script. The string may be empty.
NamedValueA property name and an associated value.
Fields of NamedValue
op: ClassUnicodeOpKind | The type of Unicode op used to associate |
name: String | The property name (which may be empty). |
value: String | The property value (which may be empty). |
Trait Implementations
impl Clone for ClassUnicodeKind[src]
impl Clone for ClassUnicodeKindfn clone(&self) -> ClassUnicodeKind[src]
fn clone(&self) -> ClassUnicodeKindReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for ClassUnicodeKind[src]
impl Debug for ClassUnicodeKindfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for ClassUnicodeKind[src]
impl Eq for ClassUnicodeKindimpl PartialEq for ClassUnicodeKind[src]
impl PartialEq for ClassUnicodeKindfn eq(&self, other: &ClassUnicodeKind) -> bool[src]
fn eq(&self, other: &ClassUnicodeKind) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ClassUnicodeKind) -> bool[src]
fn ne(&self, other: &ClassUnicodeKind) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for ClassUnicodeKind
impl Send for ClassUnicodeKindimpl Sync for ClassUnicodeKind
impl Sync for ClassUnicodeKind