Trait sp1_recursion_program::hints::Hintable
source · pub trait Hintable<C: Config> {
type HintVariable: MemVariable<C>;
// Required methods
fn read(builder: &mut Builder<C>) -> Self::HintVariable;
fn write(&self) -> Vec<Vec<Block<C::F>>>;
// Provided method
fn witness(variable: &Self::HintVariable, builder: &mut Builder<C>) { ... }
}
Required Associated Types§
type HintVariable: MemVariable<C>
Required Methods§
fn read(builder: &mut Builder<C>) -> Self::HintVariable
fn write(&self) -> Vec<Vec<Block<C::F>>>
Provided Methods§
fn witness(variable: &Self::HintVariable, builder: &mut Builder<C>)
Object Safety§
This trait is not object safe.