pub trait ReactEventAppExt {
    // Required method
    fn add_react_event<E>(&mut self) -> &mut Self
       where E: Send + Sync + 'static;
}
Expand description

Extends the App API with reactive event methods.

Required Methods§

source

fn add_react_event<E>(&mut self) -> &mut Self
where E: Send + Sync + 'static,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ReactEventAppExt for App

source§

fn add_react_event<E>(&mut self) -> &mut App
where E: Send + Sync + 'static,

Implementors§