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