pub trait UpdateSqlRow: Sized + Sync {
// Required method
fn bsql_update_row_columns(
&self,
) -> impl Iterator<Item = BsqlUpdateColumnData<'_>>;
// Provided method
fn bsql(&self) -> Option<impl Bsql + '_> { ... }
}Required Methods§
fn bsql_update_row_columns( &self, ) -> impl Iterator<Item = BsqlUpdateColumnData<'_>>
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.