Struct regex_syntax::ast::ClassAscii [−][src]
pub struct ClassAscii {
pub span: Span,
pub kind: ClassAsciiKind,
pub negated: bool,
}An ASCII character class.
Fields
span: SpanThe span of this class.
kind: ClassAsciiKindThe kind of ASCII class.
negated: boolWhether the class is negated or not. e.g., [[:alpha:]] is not negated
but [[:^alpha:]] is.
Trait Implementations
impl Clone for ClassAscii[src]
impl Clone for ClassAscii[src]fn clone(&self) -> ClassAscii[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl PartialEq<ClassAscii> for ClassAscii[src]
impl PartialEq<ClassAscii> for ClassAscii[src]