pub trait IntoLayout {
// Required method
fn into_layout(self) -> LayoutRef;
}Expand description
Conversion into an erased LayoutRef.
Required Methods§
Sourcefn into_layout(self) -> LayoutRef
fn into_layout(self) -> LayoutRef
Converts this type into a LayoutRef.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".