Trait VerificationMethodTypeSet

Source
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§