Trait leo_ast::passes::consumer::MappingConsumer

source ·
pub trait MappingConsumer {
    type Output;

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

A Consumer trait for mappings in the AST.

Required Associated Types§

Required Methods§

source

fn consume_mapping(&mut self, input: Mapping) -> Self::Output

Implementors§