pub trait Context {
    fn protocol(&self) -> &str { ... }
    fn host(&self) -> Host<&str> { ... }
    fn port(&self) -> u16 { ... }
    fn path(&self) -> &str { ... }
    fn url(&self) -> Url { ... }
    fn client(&self) -> &Client { ... }
}

Provided Methods

Trait Implementations

Converts to this type from the input type.

Implementations on Foreign Types

Implementors