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