event.rs 341 B

1234567891011
  1. /// Dioxus-native specific event type
  2. pub enum DioxusNativeEvent {
  3. /// A hotreload event, basically telling us to update our templates.
  4. #[cfg(all(
  5. feature = "hot-reload",
  6. debug_assertions,
  7. not(target_os = "android"),
  8. not(target_os = "ios")
  9. ))]
  10. DevserverEvent(dioxus_devtools::DevserverMsg),
  11. }