Enum regex_syntax::ast::ClassUnicodeOpKind [] [src]

pub enum ClassUnicodeOpKind {
    Equal,
    Colon,
    NotEqual,
}

The type of op used in a Unicode character class.

Variants

A property set to a specific value, e.g., \p{scx=Katakana}.

A property set to a specific value using a colon, e.g., \p{scx:Katakana}.

A property that isn't a particular value, e.g., \p{scx!=Katakana}.

Methods

impl ClassUnicodeOpKind
[src]

[src]

Whether the op is an equality op or not.

Trait Implementations

impl Clone for ClassUnicodeOpKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClassUnicodeOpKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ClassUnicodeOpKind
[src]

impl PartialEq for ClassUnicodeOpKind
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations