pub trait MaybeJwkVerificationMethod: VerificationMethod {
// Required method
fn try_to_jwk(&self) -> Option<Cow<'_, JWK>>;
}
Expand description
Verification method that may be turned into a JSON Web Key.
Required Methods§
fn try_to_jwk(&self) -> Option<Cow<'_, JWK>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.