pub trait TryFromResponse: Sized {
    fn try_from_response(r: Response) -> Result<Self>;
}

Required Methods

Implementors