pub trait ColWriteCap<F: PrimeField, CIx: ColumnIndexer<usize>>where
Self: ColAccessCap<F, CIx>,{
// Required method
fn write_column(&mut self, col: CIx, value: &Self::Variable);
}
Expand description
Environment capability similar to ColAccessCap
but for /also
writing/ columns. Used on the witness side.
Required Methods§
fn write_column(&mut self, col: CIx, value: &Self::Variable)
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.