pub async fn decode_async_std_with<D: Decoder, R: BufRead>(
reader: R,
decoder: D,
) -> Result<D::Value, ReadError<D::Error>>Available on crate feature
async-std only.Expand description
Asynchronously decodes a value from the given reader using a custom decoder.