Struct russh::Channel

source ·
pub struct Channel<Send: From<(ChannelId, ChannelMsg)>> { /* private fields */ }
Expand description

A handle to a session channel.

Allows you to read and write from a channel without borrowing the session

Implementations§

source§

impl<S: From<(ChannelId, ChannelMsg)> + Send + Sync + 'static> Channel<S>

source

pub async fn writable_packet_size(&self) -> usize

Returns the min between the maximum packet size and the remaining window size in the channel.

source

pub fn id(&self) -> ChannelId

source

pub async fn request_pty( &self, want_reply: bool, term: &str, col_width: u32, row_height: u32, pix_width: u32, pix_height: u32, terminal_modes: &[(Pty, u32)] ) -> Result<(), Error>

Request a pseudo-terminal with the given characteristics.

source

pub async fn request_shell(&self, want_reply: bool) -> Result<(), Error>

Request a remote shell.

source

pub async fn exec<A: Into<Vec<u8>>>( &self, want_reply: bool, command: A ) -> Result<(), Error>

Execute a remote program (will be passed to a shell). This can be used to implement scp (by calling a remote scp and tunneling to its standard input).

source

pub async fn signal(&self, signal: Sig) -> Result<(), Error>

Signal a remote process.

source

pub async fn request_subsystem<A: Into<String>>( &self, want_reply: bool, name: A ) -> Result<(), Error>

Request the start of a subsystem with the given name.

source

pub async fn request_x11<A: Into<String>, B: Into<String>>( &self, want_reply: bool, single_connection: bool, x11_authentication_protocol: A, x11_authentication_cookie: B, x11_screen_number: u32 ) -> Result<(), Error>

Request X11 forwarding through an already opened X11 channel. See RFC4254 for security issues related to cookies.

source

pub async fn set_env<A: Into<String>, B: Into<String>>( &self, want_reply: bool, variable_name: A, variable_value: B ) -> Result<(), Error>

Set a remote environment variable.

source

pub async fn window_change( &self, col_width: u32, row_height: u32, pix_width: u32, pix_height: u32 ) -> Result<(), Error>

Inform the server that our window size has changed.

source

pub async fn agent_forward(&self, want_reply: bool) -> Result<(), Error>

Inform the server that we will accept agent forwarding channels

source

pub async fn data<R: AsyncRead + Unpin>(&self, data: R) -> Result<(), Error>

Send data to a channel.

source

pub async fn extended_data<R: AsyncRead + Unpin>( &self, ext: u32, data: R ) -> Result<(), Error>

Send data to a channel. The number of bytes added to the “sending pipeline” (to be processed by the event loop) is returned.

source

pub async fn eof(&self) -> Result<(), Error>

source

pub async fn close(&self) -> Result<(), Error>

Request that the channel be closed.

source

pub async fn wait(&mut self) -> Option<ChannelMsg>

Awaits an incoming ChannelMsg, this method returns None if the channel has been closed.

source

pub fn into_stream(self) -> ChannelStream<S>

Consume the Channel to produce a bidirectionnal stream, sending and receiving ChannelMsg::Data as AsyncRead + AsyncWrite.

source

pub fn make_reader(&mut self) -> impl AsyncRead + '_

Make a reader for the Channel to receive ChannelMsg::Data through the AsyncRead trait.

source

pub fn make_reader_ext(&mut self, ext: Option<u32>) -> impl AsyncRead + '_

Make a reader for the Channel to receive ChannelMsg::Data or ChannelMsg::ExtendedData depending on the ext parameter, through the AsyncRead trait.

source

pub fn make_writer(&self) -> impl AsyncWrite

Make a writer for the Channel to send ChannelMsg::Data through the AsyncWrite trait.

source

pub fn make_writer_ext(&self, ext: Option<u32>) -> impl AsyncWrite

Make a writer for the Channel to send ChannelMsg::Data or ChannelMsg::ExtendedData depending on the ext parameter, through the AsyncWrite trait.

Trait Implementations§

source§

impl<T: From<(ChannelId, ChannelMsg)>> Debug for Channel<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Send> Freeze for Channel<Send>

§

impl<Send> !RefUnwindSafe for Channel<Send>

§

impl<Send> Send for Channel<Send>
where Send: Send,

§

impl<Send> Sync for Channel<Send>
where Send: Send,

§

impl<Send> Unpin for Channel<Send>

§

impl<Send> !UnwindSafe for Channel<Send>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V