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

Required Methods§

source

fn send_event(&self, event: T) -> Result<()>

Implementors§