pub trait EventLoopConfig {
type EventType: 'static;
type EventLoopProxy: EventLoopProxy<Self::EventType>;
// Required method
fn create_proxy() -> Self::EventLoopProxy;
}Required Associated Types§
type EventType: 'static
type EventLoopProxy: EventLoopProxy<Self::EventType>
Required Methods§
fn create_proxy() -> Self::EventLoopProxy
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.