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 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 ==
.impl Eq for ClassSetBinaryOp
impl StructuralEq for ClassSetBinaryOp
impl StructuralPartialEq for ClassSetBinaryOp
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more