pub trait CheckedLegacyInput<F: FieldWitness> {
// Required method
fn to_checked_legacy_input(
&self,
inputs: &mut Inputs<F>,
w: &mut Witness<F>,
);
// Provided method
fn to_checked_legacy_input_owned(&self, w: &mut Witness<F>) -> Inputs<F> { ... }
}Required Methods§
fn to_checked_legacy_input(&self, inputs: &mut Inputs<F>, w: &mut Witness<F>)
Provided Methods§
fn to_checked_legacy_input_owned(&self, w: &mut Witness<F>) -> Inputs<F>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".