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