pub trait DynamicUiWrapper: Sized + 'static {
type Hooks: ?Sized + DynamicUiHooks<Self>;
// Required methods
fn get_dynamic_ui(&self) -> &DynamicUi<Self>;
fn get_dynamic_ui_mut(&mut self) -> &mut DynamicUi<Self>;
}
Required Associated Types§
type Hooks: ?Sized + DynamicUiHooks<Self>
Required Methods§
fn get_dynamic_ui(&self) -> &DynamicUi<Self>
fn get_dynamic_ui_mut(&mut self) -> &mut DynamicUi<Self>
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.