pub type Result<T> = Result<T, CoreError>;
Result type tying all sub-result type hierarchies of the core together.
enum Result<T> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value