pub trait Processor: Debug {
// Required method
fn transform(
&self,
processing: ScopeProcessing,
allocator: Allocator,
) -> ScopeProcessing;
}Required Methods§
fn transform( &self, processing: ScopeProcessing, allocator: Allocator, ) -> ScopeProcessing
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".