Struct thrussh::client::Channel

source ·
pub struct Channel { /* private fields */ }

Implementations§

source§

impl Channel

source

pub fn id(&self) -> ChannelId

source

pub fn writable_packet_size(&self) -> usize

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

source

pub async fn request_pty( &mut 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(&mut self, want_reply: bool) -> Result<(), Error>

Request a remote shell.

source

pub async fn exec<A: Into<String>>( &mut 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(&mut self, signal: Sig) -> Result<(), Error>

Signal a remote process.

source

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

Request the start of a subsystem with the given name.

source

pub async fn tcpip_forward<A: Into<String>>( &mut self, want_reply: bool, address: A, port: u32 ) -> Result<(), Error>

Request the forwarding of a remote port to the client. The server will then open forwarding channels (which cause the client to call .channel_open_forwarded_tcpip()).

source

pub async fn cancel_tcpip_forward<A: Into<String>>( &mut self, want_reply: bool, address: A, port: u32 ) -> Result<(), Error>

Cancel a previous forwarding request.

source

pub async fn request_x11<A: Into<String>, B: Into<String>>( &mut 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>>( &mut self, want_reply: bool, variable_name: A, variable_value: B ) -> Result<(), Error>

Set a remote environment variable.

source

pub async fn window_change( &mut 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 data<R: AsyncReadExt + Unpin>( &mut self, data: R ) -> Result<(), Error>

Send data to a channel.

source

pub async fn extended_data<R: AsyncReadExt + Unpin>( &mut 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(&mut self) -> Result<(), Error>

source

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

Wait for data to come.

Auto Trait Implementations§

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.
§

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

§

fn vzip(self) -> V