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<CharClassesStatus> for CharClassesStatus
impl PartialEq<CharClassesStatus> for CharClassesStatus
source§fn eq(&self, other: &CharClassesStatus) -> bool
fn eq(&self, other: &CharClassesStatus) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for CharClassesStatus
impl Eq for CharClassesStatus
impl StructuralEq for CharClassesStatus
impl StructuralPartialEq for CharClassesStatus
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.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