pub enum LineDirection {
Stdin,
Stdout,
Stderr,
}Expand description
Direction of a line being sent or received.
Variants§
Stdin
Line being sent to the agent (stdin)
Stdout
Line being received from the agent (stdout)
Stderr
Line being received from the agent (stderr)
Trait Implementations§
Source§impl Clone for LineDirection
impl Clone for LineDirection
Source§fn clone(&self) -> LineDirection
fn clone(&self) -> LineDirection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LineDirection
impl Debug for LineDirection
Source§impl PartialEq for LineDirection
impl PartialEq for LineDirection
impl Copy for LineDirection
impl Eq for LineDirection
impl StructuralPartialEq for LineDirection
Auto Trait Implementations§
impl Freeze for LineDirection
impl RefUnwindSafe for LineDirection
impl Send for LineDirection
impl Sync for LineDirection
impl Unpin for LineDirection
impl UnsafeUnpin for LineDirection
impl UnwindSafe for LineDirection
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