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

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