Trait proof_of_sql::base::commitment::QueryCommitmentsExt

source ·
pub trait QueryCommitmentsExt<C>{
    // Required method
    fn from_accessor_with_max_bounds(
        columns: impl IntoIterator<Item = ColumnRef>,
        accessor: &impl CommitmentAccessor<<Vec<C> as VecCommitmentExt>::DecompressedCommitment>,
    ) -> Self;
}
Expand description

A trait for extending the functionality of the QueryCommitments alias.

Required Methods§

source

fn from_accessor_with_max_bounds( columns: impl IntoIterator<Item = ColumnRef>, accessor: &impl CommitmentAccessor<<Vec<C> as VecCommitmentExt>::DecompressedCommitment>, ) -> Self

Create a new QueryCommitments from a collection of columns and an accessor.

Object Safety§

This trait is not object safe.

Implementors§