Enum regex_syntax::ast::ClassSet [−][src]
pub enum ClassSet {
Item(ClassSetItem),
BinaryOp(ClassSetBinaryOp),
}A character class set.
This type corresponds to the internal structure of a bracketed character class. That is, every bracketed character is one of two types: a union of items (literals, ranges, other bracketed classes) or a tree of binary set operations.
Variants
Item(ClassSetItem)An item, which can be a single literal, range, nested character class or a union of items.
BinaryOp(ClassSetBinaryOp)A single binary operation (i.e., &&, -- or ~~).
Methods
impl ClassSet[src]
impl ClassSetpub fn union(ast: ClassSetUnion) -> ClassSet[src]
pub fn union(ast: ClassSetUnion) -> ClassSetBuild a set from a union.
pub fn span(&self) -> &Span[src]
pub fn span(&self) -> &SpanReturn the span of this character class set.
Trait Implementations
impl Clone for ClassSet[src]
impl Clone for ClassSetfn clone(&self) -> ClassSet[src]
fn clone(&self) -> ClassSetReturns 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)Performs copy-assignment from source. Read more
impl Debug for ClassSet[src]
impl Debug for ClassSetfn 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 ClassSet[src]
impl Eq for ClassSetimpl PartialEq for ClassSet[src]
impl PartialEq for ClassSetfn eq(&self, other: &ClassSet) -> bool[src]
fn eq(&self, other: &ClassSet) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ClassSet) -> bool[src]
fn ne(&self, other: &ClassSet) -> boolThis method tests for !=.
impl Drop for ClassSet[src]
impl Drop for ClassSetA custom Drop impl is used for ClassSet such that it uses constant
stack space but heap space proportional to the depth of the ClassSet.