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]
impl Clone for ClassSetBinaryOpfn clone(&self) -> ClassSetBinaryOp[src]
fn clone(&self) -> ClassSetBinaryOpReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for ClassSetBinaryOp[src]
impl Debug for ClassSetBinaryOpfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for ClassSetBinaryOp[src]
impl Eq for ClassSetBinaryOpimpl PartialEq for ClassSetBinaryOp[src]
impl PartialEq for ClassSetBinaryOpfn eq(&self, other: &ClassSetBinaryOp) -> bool[src]
fn eq(&self, other: &ClassSetBinaryOp) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ClassSetBinaryOp) -> bool[src]
fn ne(&self, other: &ClassSetBinaryOp) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for ClassSetBinaryOp
impl Send for ClassSetBinaryOpimpl Sync for ClassSetBinaryOp
impl Sync for ClassSetBinaryOp