pub trait JsonDecodeExt {
    // Required method
    fn parse_json<T>(&self) -> Result<T, Error>
       where T: DeserializeOwned,
             Self: AsRef<[u8]>;
}

Required Methods§

source

fn parse_json<T>(&self) -> Result<T, Error>where T: DeserializeOwned, Self: AsRef<[u8]>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> JsonDecodeExt for Twhere T: AsRef<[u8]>,