pub struct Update<'t, DB, T, CT> where
T: ModelUpdateData<'t, DB, CT>,
CT: UpdateData<'t, DB>,
DB: Database, {
pub change: CT,
// some fields omitted
}
Expand description
impl<'t, DB, T, CT> Update<'t, DB, T, CT> where
T: ModelUpdateData<'t, DB, CT>,
CT: UpdateData<'t, DB>,
DB: Database,
impl<'t, T, CT> Update<'t, MySql, T, CT> where
T: ModelUpdateData<'t, MySql, CT>,
CT: UpdateData<'t, MySql>,
impl<'t, T, CT> Update<'t, Sqlite, T, CT> where
T: ModelUpdateData<'t, Sqlite, CT>,
CT: UpdateData<'t, Sqlite>,
impl<'t, T, CT> Update<'t, Postgres, T, CT> where
T: ModelUpdateData<'t, Postgres, CT>,
CT: UpdateData<'t, Postgres>,
impl<'t, T, CT> Update<'t, Mssql, T, CT> where
T: ModelUpdateData<'t, Mssql, CT>,
CT: UpdateData<'t, Mssql>,
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.
impl<V, T> VZip<V> for T where
V: MultiLane<T>,