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