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.
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more