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

A one letter abbreviated class, e.g., \pN.

A binary property, general category or script. The string may be empty.

A property name and an associated value.

Fields of NamedValue

The type of Unicode op used to associate name with value.

The property name (which may be empty).

The property value (which may be empty).

Trait Implementations

impl Clone for ClassUnicodeKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClassUnicodeKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ClassUnicodeKind
[src]

impl PartialEq for ClassUnicodeKind
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations