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

pub enum Flag {
    CLOCAL,
    CREAD,
    CRTSCTS,
    CSTOPB,
    HUPCL,
    PARENB,
    PARODD,
}

Standard control flags

Variants

CLOCAL

Ignore modem status lines

CREAD

Enable receiver

CRTSCTS

RTS/CTS full-duplex flow control

CSTOPB

Send 2 STOP bits

HUPCL

Hang up on last close

PARENB

Parity enable

PARODD

Odd parity, else even

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)