Trait Insert

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

Required Methods§

Source

fn insert(&self, conn: &mut C, object: &T) -> Result<()>

Implementors§

Source§

impl<C, R, T, S> Insert<C, R, T> for S
where S: InsertFlavoredStatement, T: Params, C: Connection<R>, R: Row,