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