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