pub enum SpecialChar {
Linefeed,
CarriageReturn,
Tab,
Backspace,
Delete,
Escape,
}
Expand description
Special types of character we need to interpret
Variants§
Trait Implementations§
Source§impl Clone for SpecialChar
impl Clone for SpecialChar
Source§fn clone(&self) -> SpecialChar
fn clone(&self) -> SpecialChar
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SpecialChar
impl Debug for SpecialChar
impl Copy for SpecialChar
Auto Trait Implementations§
impl Freeze for SpecialChar
impl RefUnwindSafe for SpecialChar
impl Send for SpecialChar
impl Sync for SpecialChar
impl Unpin for SpecialChar
impl UnwindSafe for SpecialChar
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