pub enum EraseLineMode {
ToEnd = 0,
ToStart = 1,
All = 2,
}Expand description
EL (Erase Line) mode.
Variants§
ToEnd = 0
Erase from cursor to end of line.
ToStart = 1
Erase from start of line to cursor.
All = 2
Erase entire line.
Trait Implementations§
Source§impl Clone for EraseLineMode
impl Clone for EraseLineMode
Source§fn clone(&self) -> EraseLineMode
fn clone(&self) -> EraseLineMode
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 EraseLineMode
impl Debug for EraseLineMode
Source§impl PartialEq for EraseLineMode
impl PartialEq for EraseLineMode
impl Copy for EraseLineMode
impl Eq for EraseLineMode
impl StructuralPartialEq for EraseLineMode
Auto Trait Implementations§
impl Freeze for EraseLineMode
impl RefUnwindSafe for EraseLineMode
impl Send for EraseLineMode
impl Sync for EraseLineMode
impl Unpin for EraseLineMode
impl UnsafeUnpin for EraseLineMode
impl UnwindSafe for EraseLineMode
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