pub trait VerificationMethodTypeSet:
    'static
    + Send
    + Sync {
    // Required methods
    fn pick(&self) -> Option<&str>;
    fn contains(&self, ty: &str) -> bool;
}

Required Methods§

source

fn pick(&self) -> Option<&str>

source

fn contains(&self, ty: &str) -> bool

Implementations on Foreign Types§

source§

impl VerificationMethodTypeSet for &'static str

source§

fn contains(&self, ty: &str) -> bool

source§

fn pick(&self) -> Option<&str>

source§

impl VerificationMethodTypeSet for &'static [&'static str]

source§

fn contains(&self, ty: &str) -> bool

source§

fn pick(&self) -> Option<&str>

Implementors§