Trait derive_sql::traits::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: InsertStatement, T: Params, C: Connection<R>, R: Row,