Trait pty_shell::PtyShell
[−]
[src]
pub trait PtyShell {
fn exec<S: AsRef<str>>(&self, shell: S) -> Result<()>;
fn proxy<H: PtyHandler>(&self, handler: H) -> Result<()>;
}
Required Methods
fn exec<S: AsRef<str>>(&self, shell: S) -> Result<()>
fn proxy<H: PtyHandler>(&self, handler: H) -> Result<()>
Implementors
impl PtyShell for Child