pub trait EventLoopProxy<T: UserEvent>: Debug + Clone + Send + Sync {
    fn send_event(&self, event: T) -> Result<()>;
}

Required Methods§

Implementors§