pub trait Validator {
    type Output;
    type FuncValidator: FuncValidator;

    fn new(module: &Module) -> Self;
    fn on_function_validated(
        &mut self,
        index: u32,
        output: <<Self as Validator>::FuncValidator as FuncValidator>::Output
    ); fn finish(self) -> Self::Output; }

Required Associated Types§

Required Methods§

Implementors§