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