pub trait UrlExt: Sealed {
// Required method
fn to_socket(&self) -> Result<SocketAddr>;
}Expand description
A sealed extension trait for url::Url that adds convenience functions for binding and
connecting to the url.
pub trait UrlExt: Sealed {
// Required method
fn to_socket(&self) -> Result<SocketAddr>;
}A sealed extension trait for url::Url that adds convenience functions for binding and
connecting to the url.