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