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 duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for EraseField
Source§impl Debug for EraseField
impl Debug for EraseField
Source§impl Default for EraseField
impl Default for EraseField
Source§fn default() -> EraseField
fn default() -> EraseField
Returns the “default value” for a type. Read more
impl Eq for EraseField
Source§impl FromStr for EraseField
impl FromStr for EraseField
Source§impl PartialEq for EraseField
impl PartialEq for EraseField
Source§fn eq(&self, other: &EraseField) -> bool
fn eq(&self, other: &EraseField) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EraseField
Auto Trait Implementations§
impl Freeze for EraseField
impl RefUnwindSafe for EraseField
impl Send for EraseField
impl Sync for EraseField
impl Unpin for EraseField
impl UnsafeUnpin 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