ngrok::prelude

Trait TunnelInfo

Source
pub trait TunnelInfo {
    // Required methods
    fn id(&self) -> &str;
    fn forwards_to(&self) -> &str;
    fn metadata(&self) -> &str;
}
Expand description

Information associated with an ngrok tunnel.

Required Methods§

Source

fn id(&self) -> &str

Returns a tunnel’s unique ID.

Source

fn forwards_to(&self) -> &str

Returns a human-readable string presented in the ngrok dashboard and the Tunnels API. Use the HttpTunnelBuilder::forwards_to, TcpTunnelBuilder::forwards_to, etc. to set this value explicitly.

Source

fn metadata(&self) -> &str

Returns the arbitrary metadata string for this tunnel.

Implementors§