Enum nix::sys::termios::FlushArg
[−]
[src]
#[repr(i32)]pub enum FlushArg { TCIFLUSH, TCOFLUSH, TCIOFLUSH, }
Specify a combination of the input and output buffers to flush
Used as an argument to tcflush()
.
Variants
TCIFLUSH
Flush data that was received but not read
TCOFLUSH
Flush data written but not transmitted
TCIOFLUSH
Flush both received data not read and written data not transmitted
Trait Implementations
impl Clone for FlushArg
[src]
fn clone(&self) -> FlushArg
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Copy for FlushArg
[src]
impl Debug for FlushArg
[src]
impl PartialEq for FlushArg
[src]
fn eq(&self, __arg_0: &FlushArg) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0
This method tests for !=
.