pub type DataResult<T> = Result<T, DataError>;
Result type for data operations
pub enum DataResult<T> { Ok(T), Err(DataError), }
Contains the success value
Contains the error value