[−][src]Struct regex_syntax::ast::ClassBracketed
A bracketed character class, e.g., [a-z0-9].
Fields
span: SpanThe span of this class.
negated: boolWhether this class is negated or not. e.g., [a] is not negated but
[^a] is.
kind: ClassSetThe 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 PartialEq<ClassBracketed> for ClassBracketed[src]
fn eq(&self, other: &ClassBracketed) -> bool[src]
fn ne(&self, other: &ClassBracketed) -> bool[src]
impl Clone for ClassBracketed[src]
fn clone(&self) -> ClassBracketed[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for ClassBracketed[src]
impl Debug for ClassBracketed[src]
Auto Trait Implementations
impl Send for ClassBracketed
impl Sync for ClassBracketed
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>, [src]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,