pub type CoreResult<T> = Result<T, CoreError>;
A result type which binds the CoreError to the error type.
CoreError
pub enum CoreResult<T> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value