Trait totem_common::TryConvert
source · [−]pub trait TryConvert<From, To> {
fn try_convert(from: From) -> Option<To>;
}
Expand description
The fallible equivalent of Substrate’s Convert
. If the conversion fails, None
is returned.