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