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
.
name: String
The property name (which may be empty).
value: String
The property value (which may be empty).
A property name and an associated value.
Trait Implementations
sourceimpl Clone for ClassUnicodeKind
impl Clone for ClassUnicodeKind
sourcefn clone(&self) -> ClassUnicodeKind
fn clone(&self) -> ClassUnicodeKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ClassUnicodeKind
impl Debug for ClassUnicodeKind
sourceimpl PartialEq<ClassUnicodeKind> for ClassUnicodeKind
impl PartialEq<ClassUnicodeKind> for ClassUnicodeKind
sourcefn eq(&self, other: &ClassUnicodeKind) -> bool
fn eq(&self, other: &ClassUnicodeKind) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ClassUnicodeKind) -> bool
fn ne(&self, other: &ClassUnicodeKind) -> bool
This method tests for !=
.
impl Eq for ClassUnicodeKind
impl StructuralEq for ClassUnicodeKind
impl StructuralPartialEq for ClassUnicodeKind
Auto Trait Implementations
impl RefUnwindSafe for ClassUnicodeKind
impl Send for ClassUnicodeKind
impl Sync for ClassUnicodeKind
impl Unpin for ClassUnicodeKind
impl UnwindSafe for ClassUnicodeKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more