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§
source§impl Clone for ClassSetBinaryOp
impl Clone for ClassSetBinaryOp
source§fn clone(&self) -> ClassSetBinaryOp
fn clone(&self) -> ClassSetBinaryOp
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 more