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