pub enum EraseField {
ActivePositionToEnd,
BeginToActivePosition,
BeginToEnd,
}
Expand description
Valid parameter values to the function EF
.
Variants§
ActivePositionToEnd
Erase from the active position until the end of the field.
BeginToActivePosition
Erase from the beginning of the field until (including) the active position.
BeginToEnd
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<EraseField> for EraseField
impl PartialEq<EraseField> 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 ==
.