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