pub trait Request {
    type Type: RequestType;
    type Response: ResponseType + 'static;

    fn serialize(&self) -> Result<HttpRequest, Error>;

    fn detach(&self) -> DetachedRequest<Self::Response> { ... }
}

Required Associated Types§

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§