pub trait ParseStrictResponse {
    type Output;

    // Required method
    fn parse(&self, response: &Response<Bytes>) -> Self::Output;
}
Expand description

Convenience Trait for non-streaming APIs

ParseStrictResponse enables operations that never need to stream the body incrementally to have cleaner implementations. There is a blanket implementation

Required Associated Types§

Required Methods§

source

fn parse(&self, response: &Response<Bytes>) -> Self::Output

Implementors§