Struct regex_syntax::ast::ClassSetBinaryOp
[−]
[src]
pub struct ClassSetBinaryOp { pub span: Span, pub kind: ClassSetBinaryOpKind, pub lhs: Box<ClassSet>, pub rhs: Box<ClassSet>, }
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
impl Clone for ClassSetBinaryOp
[src]
fn clone(&self) -> ClassSetBinaryOp
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ClassSetBinaryOp
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for ClassSetBinaryOp
[src]
impl PartialEq for ClassSetBinaryOp
[src]
fn eq(&self, __arg_0: &ClassSetBinaryOp) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ClassSetBinaryOp) -> bool
[src]
This method tests for !=
.