pub trait ProjectionEventHandler {
// Required method
fn handle_projection_event(
&self,
request: ProjectionHandlingRequest,
) -> impl Future<Output = Result<ProjectionHandlingResult, PortError>> + Send;
}Required Methods§
fn handle_projection_event( &self, request: ProjectionHandlingRequest, ) -> impl Future<Output = Result<ProjectionHandlingResult, PortError>> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".