Enum termios::output::Flag [-] [+] [src]

pub enum Flag {
    OCRNL,
    ONLCR,
    ONLRET,
    ONOCR,
    OPOST,
}

Standard output flags

Variants

OCRNL

Map CR to NL on output

ONLCR

Map NL to CR-NL (ala CRMOD)

ONLRET

NL performs CR function

ONOCR

No CR output at column 0

OPOST

Enable following output processing

Trait Implementations

Derived Implementations

impl Debug for Flag

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for Flag

impl Clone for Flag

fn clone(&self) -> Flag

fn clone_from(&mut self, source: &Self)