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