pub trait Processor: Debug {
// Required method
fn transform(
&self,
processing: ScopeProcessing,
allocator: Allocator,
) -> ScopeProcessing;
}pub trait Processor: Debug {
// Required method
fn transform(
&self,
processing: ScopeProcessing,
allocator: Allocator,
) -> ScopeProcessing;
}