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

pub enum Flag {
    BRKINT,
    ICRNL,
    IGNBRK,
    IGNCR,
    IGNPAR,
    IMAXBEL,
    INLCR,
    INPCK,
    ISTRIP,
    IXANY,
    IXOFF,
    IXON,
    PARMRK,
}

Standard input flags

Variants

BRKINT

Map BREAK to SIGINTR

ICRNL

Map CR to NL (ala CRMOD)

IGNBRK

Ignore BREAK condition

IGNCR

Ignore CR

IGNPAR

Ignore (discard) parity errors

IMAXBEL

Ring bell on input queue full

INLCR

Map NL into CR

INPCK

Enable checking of parity errors

ISTRIP

Strip 8th bit off chars

IXANY

Any char will restart after stop

IXOFF

Enable input control flow

IXON

Enable output flow control

PARMRK

Mark parity and framing errors

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)