Trait sp_runtime::traits::Lookup

source ·
pub trait Lookup {
    type Source;
    type Target;

    fn lookup(&self, s: Self::Source) -> Result<Self::Target, LookupError>;
}
Expand description

Means of changing one type into another in a manner dependent on the source type.

Required Associated Types§

Type to lookup from.

Type to lookup into.

Required Methods§

Attempt a lookup.

Implementors§