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