Enum regex_syntax::ast::ClassUnicodeKind
source · pub enum ClassUnicodeKind {
OneLetter(char),
Named(String),
NamedValue {
op: ClassUnicodeOpKind,
name: String,
value: String,
},
}
Expand description
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.
NamedValue
Fields
§
op: ClassUnicodeOpKind
The type of Unicode op used to associate name
with value
.
A property name and an associated value.
Trait Implementations§
source§impl Clone for ClassUnicodeKind
impl Clone for ClassUnicodeKind
source§fn clone(&self) -> ClassUnicodeKind
fn clone(&self) -> ClassUnicodeKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more