Struct regex_syntax::ast::ClassBracketed
[−]
[src]
A bracketed character class, e.g., [a-z0-9]
.
Fields
span: Span
The span of this class.
negated: bool
Whether this class is negated or not. e.g., [a]
is not negated but
[^a]
is.
kind: ClassSet
The type of this set. A set is either a normal union of things, e.g.,
[abc]
or a result of applying set operations, e.g., [\pL--c]
.
Trait Implementations
impl Clone for ClassBracketed
[src]
impl Clone for ClassBracketed
fn clone(&self) -> ClassBracketed
[src]
fn clone(&self) -> ClassBracketed
Returns 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 ClassBracketed
[src]
impl Debug for ClassBracketed
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for ClassBracketed
[src]
impl Eq for ClassBracketed
impl PartialEq for ClassBracketed
[src]
impl PartialEq for ClassBracketed
fn eq(&self, __arg_0: &ClassBracketed) -> bool
[src]
fn eq(&self, __arg_0: &ClassBracketed) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ClassBracketed) -> bool
[src]
fn ne(&self, __arg_0: &ClassBracketed) -> bool
This method tests for !=
.
Auto Trait Implementations
impl Send for ClassBracketed
impl Send for ClassBracketed
impl Sync for ClassBracketed
impl Sync for ClassBracketed