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