dioxus_core/
launch.rs

1//! This module contains utilities renderers use to integrate with the launch function.
2
3/// A marker trait for platform configs. We use this marker to
4/// make sure that the user doesn't accidentally pass in a config
5/// builder instead of the config
6pub trait LaunchConfig: 'static {}
7
8impl LaunchConfig for () {}