Trait AsRunHandler
pub trait AsRunHandler<'a> {
type RunHandler: AsNativeRunHandler + 'a;
// Required method
fn as_run_handler<'b>(&'b mut self) -> Self::RunHandler
where 'b: 'a;
}Required Associated Types§
type RunHandler: AsNativeRunHandler + 'a
Required Methods§
fn as_run_handler<'b>(&'b mut self) -> Self::RunHandlerwhere
'b: 'a,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".