pub fn decode<'de, R, T>(reader: R) -> Result<T, R::Error> where
    R: Reader<'de>,
    T: Decode<'de>, 
Expand description

Decode the given type T from the given Reader using the DEFAULT configuration.