pub trait GizmoConfigGroup:
    Reflect
    + TypePath
    + Default { }Expand description
A trait used to create gizmo configs groups.
Here you can store additional configuration for you gizmo group not covered by GizmoConfig
Make sure to derive Default + Reflect and register in the app using app.init_gizmo_group::<T>()
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.