enum CharClassesStatus {
}
Variants§
Normal
LitString
Character is within a string
LitStringEscape
LitRawString(u32)
Character is within a raw string
RawStringPrefix(u32)
RawStringSuffix(u32)
LitChar
LitCharEscape
BlockComment(u32)
Character inside a block comment, with the integer indicating the nesting deepness of the comment
StringInBlockComment(u32)
Character inside a block-commented string, with the integer indicating the nesting deepness of the comment
BlockCommentOpening(u32)
Status when the ‘/’ has been consumed, but not yet the ‘*’, deepness is the new deepness (after the comment opening).
BlockCommentClosing(u32)
Status when the ‘*’ has been consumed, but not yet the ‘/’, deepness is the new deepness (after the comment closing).
LineComment
Character is within a line comment
Trait Implementations§
source§impl Clone for CharClassesStatus
impl Clone for CharClassesStatus
source§fn clone(&self) -> CharClassesStatus
fn clone(&self) -> CharClassesStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CharClassesStatus
impl Debug for CharClassesStatus
source§impl PartialEq for CharClassesStatus
impl PartialEq for CharClassesStatus
impl Copy for CharClassesStatus
impl Eq for CharClassesStatus
impl StructuralPartialEq for CharClassesStatus
Auto Trait Implementations§
impl Freeze for CharClassesStatus
impl RefUnwindSafe for CharClassesStatus
impl Send for CharClassesStatus
impl Sync for CharClassesStatus
impl Unpin for CharClassesStatus
impl UnwindSafe for CharClassesStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes
Size for each variant:
Normal
: 0 bytesLitString
: 0 bytesLitStringEscape
: 0 bytesLitRawString
: 4 bytesRawStringPrefix
: 4 bytesRawStringSuffix
: 4 bytesLitChar
: 0 bytesLitCharEscape
: 0 bytesBlockComment
: 4 bytesStringInBlockComment
: 4 bytesBlockCommentOpening
: 4 bytesBlockCommentClosing
: 4 bytesLineComment
: 0 bytes