pub struct Portforwarder { /* private fields */ }
Expand description
Manages port-forwarded streams.
Provides AsyncRead + AsyncWrite
for each port and does not bind to local ports. Error
channel for each port is only written by the server when there’s an exception and
the port cannot be used (didn’t initialize or can’t be used anymore).
Implementations§
Source§impl Portforwarder
impl Portforwarder
Sourcepub fn take_stream(
&mut self,
port: u16,
) -> Option<impl AsyncRead + AsyncWrite + Unpin>
pub fn take_stream( &mut self, port: u16, ) -> Option<impl AsyncRead + AsyncWrite + Unpin>
Take a port stream by the port on the target resource.
A value is returned at most once per port.
Sourcepub fn take_error(
&mut self,
port: u16,
) -> Option<impl Future<Output = Option<String>>>
pub fn take_error( &mut self, port: u16, ) -> Option<impl Future<Output = Option<String>>>
Take a future that resolves with any error message or when the error sender is dropped. When the future resolves, the port should be considered no longer usable.
A value is returned at most once per port.
Auto Trait Implementations§
impl Freeze for Portforwarder
impl !RefUnwindSafe for Portforwarder
impl Send for Portforwarder
impl Sync for Portforwarder
impl Unpin for Portforwarder
impl !UnwindSafe for Portforwarder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more