pub trait EventLoopConfig {
    type EventType: 'static;
    type EventLoopProxy: EventLoopProxy<Self::EventType>;

    // Required method
    fn create_proxy() -> Self::EventLoopProxy;
}

Required Associated Types§

Required Methods§

Implementors§