Trait WitnessColViewMut

Source
pub trait WitnessColViewMut<F>: WitnessColView<F> {
    // Required method
    fn set(&mut self, index: usize, val: F) -> Result<(), Error>;
}
Expand description

Similar to WitnessColView, for mutating witness columns.

Required Methods§

Source

fn set(&mut self, index: usize, val: F) -> Result<(), Error>

Modifies the upcasted scalar at a given index.

Implementors§