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