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