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.
pub trait StructConsumer {
type Output;
// Required method
fn consume_struct(&mut self, input: Composite) -> Self::Output;
}A Consumer trait for structs in the AST.