Trait leo_ast::passes::consumer::StructConsumer

source ·
pub trait StructConsumer {
    type Output;

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

A Consumer trait for structs in the AST.

Required Associated Types§

Required Methods§

source

fn consume_struct(&mut self, input: Composite) -> Self::Output

Implementors§