Trait ToVerifiableStrategy

Source
pub trait ToVerifiableStrategy {
    type Cache: ToVerifiableCache;

    // Provided method
    fn create_all(
        cmd: &ZkAppCommand,
        is_failed: bool,
        cache: &mut Self::Cache,
    ) -> Result<ZkAppCommand, String> { ... }
}

Required Associated Types§

Provided Methods§

Source

fn create_all( cmd: &ZkAppCommand, is_failed: bool, cache: &mut Self::Cache, ) -> Result<ZkAppCommand, String>

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§