Trait ProofFnReqEnsDef

pub trait ProofFnReqEnsDef<Args, Output> {
    // Required methods
    fn req(_args: Args) -> bool;
    fn ens(_args: Args, _output: Output) -> bool;
}

Required Methods§

fn req(_args: Args) -> bool

fn ens(_args: Args, _output: Output) -> bool

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§