Enum nix::sys::termios::SetArg [] [src]

#[repr(i32)]
pub enum SetArg { TCSANOW, TCSADRAIN, TCSAFLUSH, }

Specify when a port configuration change should occur.

Used as an argument to tcsetattr()

Variants

The change will occur immediately

The change occurs after all output has been written

Same as TCSADRAIN, but will also flush the input buffer

Trait Implementations

impl Clone for SetArg
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SetArg
[src]

impl Debug for SetArg
[src]

Formats the value using the given formatter.

impl PartialEq for SetArg
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SetArg
[src]