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