Trait sled_web::request::RequestType[][src]

pub trait RequestType {
    const METHOD: Method;
    const PATH_AND_QUERY: &'static str;
}

Types that represent a request being made to the server.

Associated Constants

The HTTP method included with the header.

The component of the URI following the domain.

Implementors