pub trait JwkVerificationMethod: VerificationMethod {
// Required method
fn to_jwk(&self) -> Cow<'_, JWK>;
}
Expand description
Verification method that can be turned into a JSON Web Key.
Required Methods§
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.