tauri_runtime

Trait UserEvent

Source
pub trait UserEvent:
    Debug
    + Clone
    + Send
    + 'static { }
Expand description

A type that can be used as an user event.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T: Debug + Clone + Send + 'static> UserEvent for T