Struct shrust::ShellIO [] [src]

pub struct ShellIO {
    // some fields omitted
}

Input / Output for shell execution

Methods

impl ShellIO

fn new<I, O>(input: I, output: O) -> ShellIO where I: Read + Send + 'static, O: Write + Send + 'static

Create a new Shell I/O wrapping provided Input and Output

fn new_io<T>(io: T) -> ShellIO where T: Read + Write + Send + 'static

Create a new Shell I/O wrapping provided Read/Write io

Trait Implementations

impl Read for ShellIO

fn read(&mut self, buf: &mut [u8]) -> Result<usize>

1.0.0fn read_to_end(&mut self, buf: &mut Vec<u8>) -> Result<usize, Error>

1.0.0fn read_to_string(&mut self, buf: &mut String) -> Result<usize, Error>

1.6.0fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), Error>

1.0.0fn by_ref(&mut self) -> &mut Self

1.0.0fn bytes(self) -> Bytes<Self>

fn chars(self) -> Chars<Self>

1.0.0fn chain<R>(self, next: R) -> Chain<Self, R> where R: Read

1.0.0fn take(self, limit: u64) -> Take<Self>

impl Write for ShellIO

fn write(&mut self, buf: &[u8]) -> Result<usize>

fn flush(&mut self) -> Result<()>

1.0.0fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

1.0.0fn write_fmt(&mut self, fmt: Arguments) -> Result<(), Error>

1.0.0fn by_ref(&mut self) -> &mut Self

impl Default for ShellIO

fn default() -> Self

Derived Implementations

impl Clone for ShellIO

fn clone(&self) -> ShellIO

1.0.0fn clone_from(&mut self, source: &Self)