pub enum EraseField {
ActivePositionToEnd = 0,
BeginToActivePosition = 1,
BeginToEnd = 2,
}
Expand description
Valid parameter values to the function EF
.
Variants§
ActivePositionToEnd = 0
Erase from the active position until the end of the field.
BeginToActivePosition = 1
Erase from the beginning of the field until (including) the active position.
BeginToEnd = 2
Erase all contents from the beginning of the field until the end of the field.
Trait Implementations§
source§impl Clone for EraseField
impl Clone for EraseField
source§fn clone(&self) -> EraseField
fn clone(&self) -> EraseField
Returns a copy 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 Default for EraseField
impl Default for EraseField
source§fn default() -> EraseField
fn default() -> EraseField
Returns the “default value” for a type. Read more
source§impl PartialEq for EraseField
impl PartialEq for EraseField
source§fn eq(&self, other: &EraseField) -> bool
fn eq(&self, other: &EraseField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for EraseField
impl Eq for EraseField
impl StructuralEq for EraseField
impl StructuralPartialEq for EraseField
Auto Trait Implementations§
impl RefUnwindSafe for EraseField
impl Send for EraseField
impl Sync for EraseField
impl Unpin for EraseField
impl UnwindSafe for EraseField
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