proof_of_sql::base::database

Struct OwnedTableTestAccessor

Source
pub struct OwnedTableTestAccessor<'a, CP: CommitmentEvaluationProof> { /* private fields */ }
Expand description

A test accessor that uses OwnedTable as the underlying table type. Note: this is intended for testing and examples. It is not optimized for performance, so should not be used for benchmarks or production use-cases.

Implementations§

Source§

impl<'a, CP: CommitmentEvaluationProof> OwnedTableTestAccessor<'a, CP>

Source

pub fn new_empty_with_setup(setup: CP::ProverPublicSetup<'a>) -> Self

Create a new empty test accessor with the given setup.

Source

pub fn new_from_table( table_ref: TableRef, owned_table: OwnedTable<CP::Scalar>, offset: usize, setup: CP::ProverPublicSetup<'a>, ) -> Self

Create a new test accessor containing the provided table.

Trait Implementations§

Source§

impl<CP: CommitmentEvaluationProof> Clone for OwnedTableTestAccessor<'_, CP>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<CP: CommitmentEvaluationProof> CommitmentAccessor<<CP as CommitmentEvaluationProof>::Commitment> for OwnedTableTestAccessor<'_, CP>

§Panics

Will panic if the column.table_ref() is not found in self.tables, or if the column.column_id() is not found in the inner table for that reference,indicating that an invalid column reference was provided.

Source§

fn get_commitment(&self, column: ColumnRef) -> CP::Commitment

Return the full table column commitment
Source§

impl<CP: CommitmentEvaluationProof> DataAccessor<<CP as CommitmentEvaluationProof>::Scalar> for OwnedTableTestAccessor<'_, CP>

§Panics

Will panic if the column.table_ref() is not found in self.tables, or if the column.column_id() is not found in the inner table for that reference, indicating that an invalid column reference was provided.

Source§

fn get_column(&self, column: ColumnRef) -> Column<'_, CP::Scalar>

Return the data span in the table (not the full-table data)
Source§

fn get_table( &self, table_ref: TableRef, column_refs: &IndexSet<ColumnRef, BuildHasherDefault<AHasher>>, ) -> Table<'_, S>

Creates a new Table from a TableRef and ColumnRefs. Read more
Source§

impl<CP: CommitmentEvaluationProof> Default for OwnedTableTestAccessor<'_, CP>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<CP: CommitmentEvaluationProof> MetadataAccessor for OwnedTableTestAccessor<'_, CP>

Source§

fn get_length(&self, table_ref: TableRef) -> usize

§Panics

Will panic if the table_ref is not found in self.tables, indicating that an invalid reference was provided.

Source§

fn get_offset(&self, table_ref: TableRef) -> usize

§Panics

Will panic if the table_ref is not found in self.tables, indicating that an invalid reference was provided.

Source§

impl<CP: CommitmentEvaluationProof> SchemaAccessor for OwnedTableTestAccessor<'_, CP>

Source§

fn lookup_schema(&self, table_ref: TableRef) -> Vec<(Ident, ColumnType)>

§Panics

Will panic if the table_ref is not found in self.tables, indicating that an invalid reference was provided.

Source§

fn lookup_column( &self, table_ref: TableRef, column_id: Ident, ) -> Option<ColumnType>

Lookup the column’s data type in the specified table Read more
Source§

impl<CP: CommitmentEvaluationProof> TestAccessor<<CP as CommitmentEvaluationProof>::Commitment> for OwnedTableTestAccessor<'_, CP>

Source§

fn get_column_names(&self, table_ref: TableRef) -> Vec<&str>

§Panics

Will panic if the table_ref is not found in self.tables, indicating that an invalid reference was provided.

Source§

fn update_offset(&mut self, table_ref: TableRef, new_offset: usize)

§Panics

Will panic if the table_ref is not found in self.tables, indicating that an invalid reference was provided.

Source§

type Table = OwnedTable<<CP as CommitmentEvaluationProof>::Scalar>

The table type that the accessor will accept in the add_table method, and likely the inner table type.
Source§

fn new_empty() -> Self

Create an empty test accessor
Source§

fn add_table( &mut self, table_ref: TableRef, data: Self::Table, table_offset: usize, )

Add a new table to the current test accessor

Auto Trait Implementations§

§

impl<'a, CP> !Freeze for OwnedTableTestAccessor<'a, CP>

§

impl<'a, CP> !RefUnwindSafe for OwnedTableTestAccessor<'a, CP>

§

impl<'a, CP> Send for OwnedTableTestAccessor<'a, CP>

§

impl<'a, CP> !Sync for OwnedTableTestAccessor<'a, CP>

§

impl<'a, CP> Unpin for OwnedTableTestAccessor<'a, CP>

§

impl<'a, CP> !UnwindSafe for OwnedTableTestAccessor<'a, CP>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more