pub trait RoutingStrategyExt: RoutingStrategy {
// Provided method
fn boxed(self) -> Box<dyn RoutingStrategy>
where Self: Sized + 'static { ... }
}Provided Methods§
fn boxed(self) -> Box<dyn RoutingStrategy>where
Self: Sized + 'static,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".