launch.rs 316 B

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