pub enum EraseLine {
ActivePositionToEnd = 0,
BeginToActivePosition = 1,
BeginToEnd = 2,
}
Expand description
Valid parameter values to the function EL
.
Variants§
ActivePositionToEnd = 0
Erase from the active position until the end of the line.
BeginToActivePosition = 1
Erase from the beginning of the line until (including) the active position.
BeginToEnd = 2
Erase all contents from the beginning of the line until the end of the line.
Trait Implementations§
source§impl PartialEq for EraseLine
impl PartialEq for EraseLine
impl Copy for EraseLine
impl Eq for EraseLine
impl StructuralEq for EraseLine
impl StructuralPartialEq for EraseLine
Auto Trait Implementations§
impl RefUnwindSafe for EraseLine
impl Send for EraseLine
impl Sync for EraseLine
impl Unpin for EraseLine
impl UnwindSafe for EraseLine
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