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