pub trait LayoutState:
SerializableAny
+ Default
+ Debug {
// Provided methods
fn load(ui: &Ui, id: Option<String>) -> Self { ... }
fn save(self, ui: &mut Ui, id: Option<String>) { ... }
}Provided Methods§
fn load(ui: &Ui, id: Option<String>) -> Self
fn save(self, ui: &mut Ui, id: Option<String>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".