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§

source

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

Object Safety§

This trait is not object safe.

Implementors§