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§

source

fn to_jwk(&self) -> Cow<'_, JWK>

Object Safety§

This trait is not object safe.

Implementors§