pub enum FlowAction {
SuspendOutput,
ResumeOutput,
SuspendInput,
ResumeInput,
}Expand description
Action de contrôle de flux pour tcflow.
Variants§
SuspendOutput
TCOOFF — suspend la sortie.
ResumeOutput
TCOON — reprend la sortie.
SuspendInput
TCIOFF — émet un STOP (suspend l’entrée du terminal distant).
ResumeInput
TCION — émet un START (reprend l’entrée du terminal distant).
Trait Implementations§
Source§impl Clone for FlowAction
impl Clone for FlowAction
Source§fn clone(&self) -> FlowAction
fn clone(&self) -> FlowAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FlowAction
Source§impl Debug for FlowAction
impl Debug for FlowAction
impl Eq for FlowAction
Source§impl PartialEq for FlowAction
impl PartialEq for FlowAction
impl StructuralPartialEq for FlowAction
Auto Trait Implementations§
impl Freeze for FlowAction
impl RefUnwindSafe for FlowAction
impl Send for FlowAction
impl Sync for FlowAction
impl Unpin for FlowAction
impl UnsafeUnpin for FlowAction
impl UnwindSafe for FlowAction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more