Struct ssh::Channel [] [src]

pub struct Channel<'b> {
    // some fields omitted
}

Methods

impl<'b> Channel<'b>
[src]

fn open_session(&mut self) -> Result<()Error>

impl<'d, 'c: 'd> Channel<'c>
[src]

fn request_exec(&mut self, cmd: &[u8]) -> Result<()Error>

fn send_eof(&mut self) -> Result<()Error>

fn get_exit_status(&self) -> Option<c_int>

fn stdout(&'d mut self) -> ChannelReader<'d, 'c>

fn stderr(&'d mut self) -> ChannelReader<'d, 'c>

fn close(&mut self)

Trait Implementations

impl<'b> Drop for Channel<'b>
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more