pub trait PipeInteractiveExt: AsyncRead + AsyncWrite + Unpin + Send {
    // Provided methods
    async fn interactive_shell(&mut self) -> Result<(), PipeError> { ... }
    async fn interactive_ansi(&mut self) -> Result<(), PipeError> { ... }
}

Provided Methods§

source

async fn interactive_shell(&mut self) -> Result<(), PipeError>

source

async fn interactive_ansi(&mut self) -> Result<(), PipeError>

Object Safety§

This trait is not object safe.

Implementors§