pub type Result<T> = Result<T, CoreError>;
pub enum Result<T> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value