pub type BmpResult<T> = Result<T, BmpError>;
A result type, either containing an Image or a BmpError.
Image
BmpError
enum BmpResult<T> { Ok(T), Err(BmpError), }
Contains the success value
Contains the error value