ssi_status

Trait StatusMapEntrySet

Source
pub trait StatusMapEntrySet {
    type Entry<'a>: StatusMapEntry
       where Self: 'a;

    // Required method
    fn get_entry(&self, purpose: StatusPurpose<&str>) -> Option<Self::Entry<'_>>;
}

Required Associated Types§

Source

type Entry<'a>: StatusMapEntry where Self: 'a

Required Methods§

Source

fn get_entry(&self, purpose: StatusPurpose<&str>) -> Option<Self::Entry<'_>>

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.

Implementors§