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§
fn from_key(k: StorageKeyWithSpace<'a>) -> Self::Output
fn from_result(r: Result<StorageKeyWithSpace<'a>, String>) -> Self::Output
Object Safety§
This trait is not object safe.