Enum regex_syntax::ast::ClassUnicodeOpKind
source · [−]pub enum ClassUnicodeOpKind {
Equal,
Colon,
NotEqual,
}
Expand description
The type of op used in a Unicode character class.
Variants
Equal
A property set to a specific value, e.g., \p{scx=Katakana}
.
Colon
A property set to a specific value using a colon, e.g.,
\p{scx:Katakana}
.
NotEqual
A property that isn’t a particular value, e.g., \p{scx!=Katakana}
.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ClassUnicodeOpKind
impl Send for ClassUnicodeOpKind
impl Sync for ClassUnicodeOpKind
impl Unpin for ClassUnicodeOpKind
impl UnwindSafe for ClassUnicodeOpKind
Blanket Implementations
Mutably borrows from an owned value. Read more