pub enum CharTypes<'ast> {
Basic(BasicChar<'ast>),
Escaped(EscapedChar<'ast>),
Hex(HexChar<'ast>),
Unicode(UnicodeChar<'ast>),
}Variants§
Implementations§
Trait Implementations§
impl<'ast> Eq for CharTypes<'ast>
impl<'ast> StructuralPartialEq for CharTypes<'ast>
Auto Trait Implementations§
impl<'ast> Freeze for CharTypes<'ast>
impl<'ast> RefUnwindSafe for CharTypes<'ast>
impl<'ast> Send for CharTypes<'ast>
impl<'ast> Sync for CharTypes<'ast>
impl<'ast> Unpin for CharTypes<'ast>
impl<'ast> UnsafeUnpin for CharTypes<'ast>
impl<'ast> UnwindSafe for CharTypes<'ast>
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
Mutably borrows from an owned value. Read more