AdapterTraceFiller

Trait AdapterTraceFiller 

Source
pub trait AdapterTraceFiller<F>: Send + Sync {
    const WIDTH: usize;

    // Required method
    fn fill_trace_row(
        &self,
        mem_helper: &MemoryAuxColsFactory<'_, F>,
        adapter_row: &mut [F],
    );
}

Required Associated Constants§

Required Methods§

Source

fn fill_trace_row( &self, mem_helper: &MemoryAuxColsFactory<'_, F>, adapter_row: &mut [F], )

Post-execution filling of rest of adapter row.

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.

Implementors§