Struct k8s_test_framework::PortForwarder
source · pub struct PortForwarder { /* private fields */ }
Expand description
Keeps track of the continuously running kubectl port-forward
command,
exposing the API to terminate it when needed.
Implementations§
source§impl PortForwarder
impl PortForwarder
sourcepub async fn wait_until_ready(&mut self) -> Result<(), Box<dyn Error>>
pub async fn wait_until_ready(&mut self) -> Result<(), Box<dyn Error>>
Waits for port forward process to start listening on IPv4 and IPv6 local sockets.
sourcepub fn local_port(&self) -> u16
pub fn local_port(&self) -> u16
Returns the local port that port forward was requested to listen on.
sourcepub fn resource_port(&self) -> u16
pub fn resource_port(&self) -> u16
Returns the resource port that port forward was requested to forward to.
sourcepub fn local_addr_ipv4(&self) -> String
pub fn local_addr_ipv4(&self) -> String
Returns the local address (in the “host:port” form) to connect to in order to reach the cluster resource port, at the IPv4 address family.
sourcepub fn local_addr_ipv6(&self) -> String
pub fn local_addr_ipv6(&self) -> String
Returns the local address (in the “host:port” form) to connect to in order to reach the cluster resource port, at the IPv6 address family.
sourcepub async fn wait(&mut self) -> Result<ExitStatus>
pub async fn wait(&mut self) -> Result<ExitStatus>
Wait for the kubectl port-forward
process to exit and return the exit
code.
Trait Implementations§
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