Struct ngrok::prelude::LabeledTunnelBuilder
source · pub struct LabeledTunnelBuilder { /* private fields */ }
Expand description
A builder for a labeled tunnel.
Implementations§
source§impl LabeledTunnelBuilder
impl LabeledTunnelBuilder
sourcepub fn metadata(&mut self, metadata: impl Into<String>) -> &mut Self
pub fn metadata(&mut self, metadata: impl Into<String>) -> &mut Self
Sets the opaque metadata string for this tunnel. Viewable via the API.
https://ngrok.com/docs/api/resources/tunnels/#tunnel-fields
sourcepub fn label(
&mut self,
label: impl Into<String>,
value: impl Into<String>
) -> &mut Self
pub fn label( &mut self, label: impl Into<String>, value: impl Into<String> ) -> &mut Self
Add a label, value pair for this tunnel.
https://ngrok.com/docs/network-edge/edges/#tunnel-group
sourcepub fn forwards_to(&mut self, forwards_to: impl Into<String>) -> &mut Self
pub fn forwards_to(&mut self, forwards_to: impl Into<String>) -> &mut Self
Sets the ForwardsTo string for this tunnel. This can be viewed via the API or dashboard.
This overrides the default process info if using TunnelBuilder::listen, and is in turn overridden by the url provided to ForwarderBuilder::listen_and_forward.
https://ngrok.com/docs/api/resources/tunnels/#tunnel-fields
sourcepub fn app_protocol(&mut self, app_protocol: impl Into<String>) -> &mut Self
pub fn app_protocol(&mut self, app_protocol: impl Into<String>) -> &mut Self
Sets the L7 protocol string for this tunnel.
sourcepub fn verify_upstream_tls(&mut self, verify_upstream_tls: bool) -> &mut Self
pub fn verify_upstream_tls(&mut self, verify_upstream_tls: bool) -> &mut Self
Disables backend TLS certificate verification for forwards from this tunnel.
Trait Implementations§
source§impl Clone for LabeledTunnelBuilder
impl Clone for LabeledTunnelBuilder
source§fn clone(&self) -> LabeledTunnelBuilder
fn clone(&self) -> LabeledTunnelBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl ForwarderBuilder for LabeledTunnelBuilder
impl ForwarderBuilder for LabeledTunnelBuilder
source§fn listen_and_forward<'life0, 'async_trait>(
&'life0 self,
to_url: Url
) -> Pin<Box<dyn Future<Output = Result<Forwarder<LabeledTunnel>, RpcError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn listen_and_forward<'life0, 'async_trait>(
&'life0 self,
to_url: Url
) -> Pin<Box<dyn Future<Output = Result<Forwarder<LabeledTunnel>, RpcError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Start listening for new connections on this tunnel and forward all
connections to the provided URL. Read more
source§impl From<Session> for LabeledTunnelBuilder
impl From<Session> for LabeledTunnelBuilder
source§impl TunnelBuilder for LabeledTunnelBuilder
impl TunnelBuilder for LabeledTunnelBuilder
§type Tunnel = LabeledTunnel
type Tunnel = LabeledTunnel
The ngrok tunnel type that this builder produces.
Auto Trait Implementations§
impl Freeze for LabeledTunnelBuilder
impl !RefUnwindSafe for LabeledTunnelBuilder
impl Send for LabeledTunnelBuilder
impl Sync for LabeledTunnelBuilder
impl Unpin for LabeledTunnelBuilder
impl !UnwindSafe for LabeledTunnelBuilder
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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