pub enum Chars {
LBrace,
RBrace,
LBracket,
RBracket,
Colon,
Comma,
Quote,
NewLine,
MinusSign,
Dot,
Space,
Char(u8),
}
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for Chars
impl RefUnwindSafe for Chars
impl Send for Chars
impl Sync for Chars
impl Unpin for Chars
impl UnwindSafe for Chars
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