Enum nix::sys::termios::FlowArg
#[repr(i32)]
#[non_exhaustive]
pub enum FlowArg {
TCOOFF,
TCOON,
TCIOFF,
TCION,
}Documentation
Specify how transmission flow should be altered
Used as an argument to tcflow().
Variants
TCOOFFSuspend transmission
TCOONResume transmission
TCIOFFTransmit a STOP character, which should disable a connected terminal device
TCIONTransmit a START character, which should re-enable a connected terminal device
Trait Implementations
impl Debug for FlowArg
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Resultimpl Hash for FlowArg
fn hash<__H: $crate::hash::Hasher>(&Self, state: &mut __H) -> ()impl Ord for FlowArg
fn cmp(&Self, other: &FlowArg) -> $crate::cmp::Orderingimpl PartialOrd<FlowArg> for FlowArg
fn partial_cmp(&Self, other: &FlowArg) -> $crate::option::Option<$crate::cmp::Ordering>impl StructuralEq for FlowArgimpl StructuralPartialEq for FlowArgAuto Trait Implementations
impl RefUnwindSafe for FlowArgimpl UnwindSafe for FlowArgBlanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T