Trait CallForestInterface

Source
pub trait CallForestInterface
where 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§

Required Methods§

Source

fn empty() -> Self

Source

fn is_empty(&self, w: &mut Self::W) -> Self::Bool

Source

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.

Implementors§