pub trait AsBsqlRow: Sync {
// Required methods
fn as_bsql_row_columns(&self) -> impl Iterator<Item = AsBsqlColumnData<'_>>;
fn bsql_column_names() -> impl Iterator<Item = &'static str>
where Self: Sized;
// Provided method
fn bsql_with_rowid(self) -> WithRowId<Self>
where Self: Sized { ... }
}Required Methods§
fn as_bsql_row_columns(&self) -> impl Iterator<Item = AsBsqlColumnData<'_>>
fn bsql_column_names() -> impl Iterator<Item = &'static str>where
Self: Sized,
Provided Methods§
fn bsql_with_rowid(self) -> WithRowId<Self>where
Self: Sized,
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.