pub trait ResponseType {
    type Type;

    fn deserialize(resp: HttpResponse) -> Result<Self::Type, Error>;
}

Required Associated Types§

Required Methods§

Implementors§