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

The span of this operation. e.g., the a-z--[h-p] in [a-z--h-p].

The type of this set operation.

The left hand side of the operation.

The right hand side of the operation.

Trait Implementations

impl Clone for ClassSetBinaryOp
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClassSetBinaryOp
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ClassSetBinaryOp
[src]

impl PartialEq for ClassSetBinaryOp
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations