Enum nix::sys::termios::SetArg [−][src]
#[repr(i32)]
pub enum SetArg {
TCSANOW,
TCSADRAIN,
TCSAFLUSH,
}
Expand description
Specify when a port configuration change should occur.
Used as an argument to tcsetattr()
Variants
TCSANOW
The change will occur immediately
TCSADRAIN
The change occurs after all output has been written
TCSAFLUSH
Same as TCSADRAIN
, but will also flush the input buffer
Trait Implementations
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for SetArg
impl UnwindSafe for SetArg
Blanket Implementations
Mutably borrows from an owned value. Read more