pub trait Decoder<T> {
// Required method
fn decode(&self) -> Result<T>;
}Expand description
Decoder implementations for converting raw responses to client types
pub trait Decoder<T> {
// Required method
fn decode(&self) -> Result<T>;
}Decoder implementations for converting raw responses to client types