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