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