pub trait EndpointInfo {
// Required methods
fn url(&self) -> &str;
fn proto(&self) -> &str;
}Expand description
An ngrok tunnel backing a simple endpoint. Most agent-configured tunnels fall into this category, with the exception of labeled tunnels.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".