pub enum FormatControl {
Default,
NonPrint,
Telnet,
Asa,
}
Expand description
Text Format Control used in TYPE
command
Variants§
Default
Default text format control (is NonPrint)
NonPrint
Non-print (not destined for printing)
Telnet
Telnet format control (<CR>, <FF>, etc.)
Asa
ASA (Fortran) Carriage Control
Trait Implementations§
Source§impl Clone for FormatControl
impl Clone for FormatControl
Source§fn clone(&self) -> FormatControl
fn clone(&self) -> FormatControl
Returns a duplicate 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 Debug for FormatControl
impl Debug for FormatControl
Source§impl Ord for FormatControl
impl Ord for FormatControl
Source§fn cmp(&self, other: &FormatControl) -> Ordering
fn cmp(&self, other: &FormatControl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for FormatControl
impl PartialEq for FormatControl
Source§impl PartialOrd for FormatControl
impl PartialOrd for FormatControl
Source§impl ToString for FormatControl
impl ToString for FormatControl
impl Eq for FormatControl
impl StructuralPartialEq for FormatControl
Auto Trait Implementations§
impl Freeze for FormatControl
impl RefUnwindSafe for FormatControl
impl Send for FormatControl
impl Sync for FormatControl
impl Unpin for FormatControl
impl UnwindSafe for FormatControl
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