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