pub type Result<T> = Result<T, RootError>;
Result alias used by the root genesis crate.
pub enum Result<T> { Ok(T), Err(RootError), }
Contains the success value
Contains the error value