pub enum Char {
Single(char),
Digraph(char, char),
CtrlSeq(String),
CopyLine(MoveDir1D),
}Expand description
A character.
Variants§
Single(char)
An exact character.
Digraph(char, char)
A digraph sequence.
CtrlSeq(String)
A terminal control sequence.
CopyLine(MoveDir1D)
Copy a character from the same column in the previous or next line.
Trait Implementations§
impl Eq for Char
impl StructuralPartialEq for Char
Auto Trait Implementations§
impl Freeze for Char
impl RefUnwindSafe for Char
impl Send for Char
impl Sync for Char
impl Unpin for Char
impl UnwindSafe for Char
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