UpdateSqlRow

Trait UpdateSqlRow 

Source
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§

Provided Methods§

Source

fn bsql(&self) -> Option<impl Bsql + '_>

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.

Implementors§