pub trait InjectorExecutionAdapter<Mode, T, Bridge>: OsAdapter{
type Handler: InjectorHandlerAdapter<Self, Mode, T, Bridge>;
}Available on crate features
injector and utils only.Expand description
Maps an OS to its mode-specific injector handler implementation.
Each OS implements this trait once per ExecutionMode, providing
the concrete handler type that performs the actual injection.
Required Associated Types§
Sourcetype Handler: InjectorHandlerAdapter<Self, Mode, T, Bridge>
type Handler: InjectorHandlerAdapter<Self, Mode, T, Bridge>
The concrete handler type for this OS and execution mode.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".