pub trait QueryCommitmentsExt<C>where
C: Commitment,{
// Required method
fn from_accessor_with_max_bounds(
columns: impl IntoIterator<Item = ColumnRef>,
accessor: &(impl CommitmentAccessor<C> + SchemaAccessor),
) -> Self;
}
Expand description
A trait for extending the functionality of the QueryCommitments
alias.
Required Methods§
Sourcefn from_accessor_with_max_bounds(
columns: impl IntoIterator<Item = ColumnRef>,
accessor: &(impl CommitmentAccessor<C> + SchemaAccessor),
) -> Self
fn from_accessor_with_max_bounds( columns: impl IntoIterator<Item = ColumnRef>, accessor: &(impl CommitmentAccessor<C> + SchemaAccessor), ) -> Self
Create a new QueryCommitments
from a collection of columns and an accessor.
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.