pub fn concat_struct_base64url_encode(concat_string: &str) -> StringExpand description
Encodes a concatenated string into a Base64 URL-safe format without padding.
Intended for use with a concatenated string generated
from the function concat_struct.
Encodes using base64url encoding (RFC 4648, Section 5).
§Arguments
concat_string: The string to be encoded, typically concatenated from the functionconcat_struct.
§Returns
String: A Base64 URL-safe encoded string without padding.