pub trait HandleDepOutput:
Send
+ Sized
+ Sync
+ 'static {
type Output: Send + Sync + 'static;
// Required method
fn handle_dep_result(
self,
res: Self::Output,
) -> impl Future<Output = ()> + Send;
}
Expand description
Defines a type that can handle the result of a dependency
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.