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: ClassUnicodeOpKindThe type of Unicode op used to associate name with value.
A property name and an associated value.
Trait Implementations§
source§impl Arbitrary<'_> for ClassUnicodeKind
Available on crate feature arbitrary only. 
impl Arbitrary<'_> for ClassUnicodeKind
Available on crate feature 
arbitrary only.source§fn arbitrary(u: &mut Unstructured<'_>) -> Result<ClassUnicodeKind>
 
fn arbitrary(u: &mut Unstructured<'_>) -> Result<ClassUnicodeKind>
Generate an arbitrary value of 
Self from the given unstructured data. Read moresource§fn size_hint(depth: usize) -> (usize, Option<usize>)
 
fn size_hint(depth: usize) -> (usize, Option<usize>)
Get a size hint for how many bytes out of an 
Unstructured this type
needs to construct itself. Read moresource§fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
 
fn arbitrary_take_rest(u: Unstructured<'a>) -> Result<Self, Error>
Generate an arbitrary value of 
Self from the entirety of the given
unstructured data. Read moresource§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 moresource§impl Debug for ClassUnicodeKind
 
impl Debug for ClassUnicodeKind
source§impl PartialEq for ClassUnicodeKind
 
impl PartialEq for ClassUnicodeKind
source§fn 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 ==.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§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more