[][src]Trait sp_runtime::traits::StaticLookup

pub trait StaticLookup {
    type Source: Codec + Clone + PartialEq + Debug;
    type Target;
    pub fn lookup(s: Self::Source) -> Result<Self::Target, LookupError>;
pub fn unlookup(t: Self::Target) -> Self::Source; }

Means of changing one type into another in a manner dependent on the source type. This variant is different to Lookup in that it doesn't (can cannot) require any context.

Associated Types

type Source: Codec + Clone + PartialEq + Debug[src]

Type to lookup from.

type Target[src]

Type to lookup into.

Loading content...

Required methods

pub fn lookup(s: Self::Source) -> Result<Self::Target, LookupError>[src]

Attempt a lookup.

pub fn unlookup(t: Self::Target) -> Self::Source[src]

Convert from Target back to Source.

Loading content...

Implementors

impl<T: Codec + Clone + PartialEq + Debug> StaticLookup for IdentityLookup<T>[src]

type Source = T

type Target = T

Loading content...