pub trait ParseStrictResponse {
    type Output;
    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

Associated Types

Required methods

Implementors