pub trait UpdateSqlRow: Sized + Sync {
// Required method
fn bsql_update_row_columns(
&self,
) -> impl Iterator<Item = BSqlUpdateColumnData<'_>>;
// Provided method
fn bsql(&self) -> Option<impl AsFragment + '_> { ... }
}Required Methods§
fn bsql_update_row_columns( &self, ) -> impl Iterator<Item = BSqlUpdateColumnData<'_>>
Provided Methods§
Sourcefn bsql(&self) -> Option<impl AsFragment + '_>
fn bsql(&self) -> Option<impl AsFragment + '_>
In bslq!, if Some, provides "col = .., .."
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.