A library to work with Javascript Object Signing and Encryption(JOSE),
including JSON Web Tokens (JWT), JSON Web Signature (JWS) and JSON Web Encryption (JWE).
#[derive(Clone, Copy, Debug, Eq, PartialEq)]/// Defines whether a claim is required or not
pubenumPresence{/// Claim is optional
Optional,/// Claim is required
Required,}implDefault forPresence{fndefault()->Self{Presence::Optional
}}