pub trait ResponseExt {
    // Required methods
    fn into_vec(self) -> IoResult<Vec<u8>>;
    fn into_string(self) -> IoResult<String>;
    fn json<T: DeserializeOwned>(self) -> IoResult<T>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ResponseExt for Response<BodyReader>

Implementors§