pub trait ConditionalReturnValue<'a> {
    type Output;

    // Required methods
    fn from_key(k: StorageKeyWithSpace<'a>) -> Self::Output;
    fn from_result(r: Result<StorageKeyWithSpace<'a>, String>) -> Self::Output;
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§