pub type DataCastResult<T> = Result<T, DataError>;
Alias for simple error type
pub enum DataCastResult<T> { Ok(T), Err(DataError), }
Contains the success value
Contains the error value