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