Trait leo_ast::passes::consumer::FunctionConsumer

source ·
pub trait FunctionConsumer {
    type Output;

    // Required method
    fn consume_function(&mut self, input: Function) -> Self::Output;
}
Expand description

A Consumer trait for functions in the AST.

Required Associated Types§

Required Methods§

source

fn consume_function(&mut self, input: Function) -> Self::Output

Implementors§