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