pub fn decode_and_push_to_vec<T: ?Sized + AsRef<[u8]>>(
    input: &T,
    output: Vec<u8>
) -> Result<Vec<u8>, DecodeError>
👎 Deprecated since 1.4.0:

Please use the decode_to_vec function instead

Expand description

Decode a Base64-URL string to data and directly store into a Vec instance by concatenating them.