Struct regex_syntax::ast::ClassSetBinaryOp
source · [−]pub struct ClassSetBinaryOp {
pub span: Span,
pub kind: ClassSetBinaryOpKind,
pub lhs: Box<ClassSet>,
pub rhs: Box<ClassSet>,
}
Expand description
A Unicode character class set operation.
Fields
span: Span
The span of this operation. e.g., the a-z--[h-p]
in [a-z--h-p]
.
kind: ClassSetBinaryOpKind
The type of this set operation.
lhs: Box<ClassSet>
The left hand side of the operation.
rhs: Box<ClassSet>
The right hand side of the operation.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ClassSetBinaryOp
impl Send for ClassSetBinaryOp
impl Sync for ClassSetBinaryOp
impl Unpin for ClassSetBinaryOp
impl UnwindSafe for ClassSetBinaryOp
Blanket Implementations
Mutably borrows from an owned value. Read more