pub trait TypedEventBase:
Send
+ Sync
+ Debug {
// Required methods
fn as_dict(&self) -> HashMap<String, Value>;
fn as_any(&self) -> &dyn Any;
// Provided methods
fn is_callback_event(&self) -> bool { ... }
fn prepare(&mut self, _invocation_state: &HashMap<String, Value>) { ... }
}Expand description
Base trait for typed events.
Required Methods§
Provided Methods§
Sourcefn is_callback_event(&self) -> bool
fn is_callback_event(&self) -> bool
Whether this event should trigger the callback_handler.