pub trait RegionProcessor {
type P: 'static + Send + Sync + Serialize;
// Required method
fn process_region(&self, tid: u32, start: u32, stop: u32) -> Vec<Self::P>;
}Expand description
RegionProcessor defines the methods that must be implemented to process a region
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".