Struct term_transcript::traits::Echoing
source · pub struct Echoing<S> { /* private fields */ }
Expand description
Wrapper that allows configuring echoing of the shell process.
A shell process is echoing if each line provided to the input is echoed to the output.
Implementations§
Trait Implementations§
source§impl<S: ConfigureCommand> ConfigureCommand for Echoing<S>
impl<S: ConfigureCommand> ConfigureCommand for Echoing<S>
source§impl<S: ShellProcess> ShellProcess for Echoing<S>
impl<S: ShellProcess> ShellProcess for Echoing<S>
source§impl<S: SpawnShell> SpawnShell for Echoing<S>
impl<S: SpawnShell> SpawnShell for Echoing<S>
§type ShellProcess = Echoing<<S as SpawnShell>::ShellProcess>
type ShellProcess = Echoing<<S as SpawnShell>::ShellProcess>
Spawned shell process.
§type Reader = <S as SpawnShell>::Reader
type Reader = <S as SpawnShell>::Reader
Reader of the shell output.
§type Writer = <S as SpawnShell>::Writer
type Writer = <S as SpawnShell>::Writer
Writer to the shell input.
source§fn spawn_shell(&mut self) -> Result<SpawnedShell<Self>>
fn spawn_shell(&mut self) -> Result<SpawnedShell<Self>>
Spawns a shell process. Read more