pub trait CallForestInterfacewhere
Self: Sized,{
type W: WitnessGenerator<Fp>;
type AccountUpdate: AccountUpdateInterface;
type Bool: BoolInterface;
// Required methods
fn empty() -> Self;
fn is_empty(&self, w: &mut Self::W) -> Self::Bool;
fn pop_exn(&self, w: &mut Self::W) -> ((Self::AccountUpdate, Self), Self);
}
Required Associated Types§
type W: WitnessGenerator<Fp>
type AccountUpdate: AccountUpdateInterface
type Bool: BoolInterface
Required Methods§
fn empty() -> Self
fn is_empty(&self, w: &mut Self::W) -> Self::Bool
fn pop_exn(&self, w: &mut Self::W) -> ((Self::AccountUpdate, Self), Self)
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.