pub trait Insert<C, R, T>where C: Connection<R>, R: Row,{ // Required method fn insert(&self, conn: &mut C, object: &T) -> Result<()>; }