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: SpanThe span of this operation. e.g., the a-z--[h-p] in [a-z--h-p].
kind: ClassSetBinaryOpKindThe 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 moresource§impl Debug for ClassSetBinaryOp
 
impl Debug for ClassSetBinaryOp
source§impl PartialEq<ClassSetBinaryOp> for ClassSetBinaryOp
 
impl PartialEq<ClassSetBinaryOp> for ClassSetBinaryOp
source§fn eq(&self, other: &ClassSetBinaryOp) -> bool
 
fn eq(&self, other: &ClassSetBinaryOp) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.