pub fn decode_b64_json<T>(data: impl AsRef<[u8]>) -> Result<T, Error>where T: DeserializeOwned,
Decode the given url-safe base64-encoded slice into its raw bytes and try to deserialize it into T.
T