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