Skip to main content

TunnelChannel

Trait TunnelChannel 

Source
pub trait TunnelChannel:
    AsyncRead
    + AsyncWrite
    + Unpin
    + Send { }
Expand description

Stream bidirecional usado para tunnel SSH (direct-tcpip).

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> TunnelChannel for T
where T: AsyncRead + AsyncWrite + Unpin + Send,