Struct kube_client::api::Portforwarder
source · pub struct Portforwarder { /* private fields */ }
Available on crate feature
client
only.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.