pub enum StdinMode {
Finite,
Relayed,
}Expand description
What the supervised ssh connection does with the local stdin lease.
Variants§
Finite
The worker’s stdin is /dev/null; the supervisor drains SSH
stdin only to observe the lease. Finite Git commands.
Relayed
SSH stdin is relayed byte-for-byte into the worker’s stdin with a bounded buffer. Language servers.
Trait Implementations§
impl Copy for StdinMode
impl Eq for StdinMode
impl StructuralPartialEq for StdinMode
Auto Trait Implementations§
impl Freeze for StdinMode
impl RefUnwindSafe for StdinMode
impl Send for StdinMode
impl Sync for StdinMode
impl Unpin for StdinMode
impl UnsafeUnpin for StdinMode
impl UnwindSafe for StdinMode
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