pub trait TryFromRefRow<R>where R: Row,{ // Required method fn try_from(r: &R) -> Result<Self> where Self: Sized; }
Trait to be implemented to allow a Row to be converted into an object
Row