pubmodbytes;#[cfg(feature ="image")]pubmodimage;pubmodjson;pubmodtext;/// Parse a response object to a specific type.
////// # Examples
////// See [text::TextParser], [json::JsonParser]
pubtraitParser<R> {/// The output type of the parser
typeOutput;/// The error type of the parser
typeError;fnparse(&self, response: R)->Result<Self::Output, Self::Error>;}