pub trait IntoElement {
// Required method
fn into_element(self, id: GlobalElementId) -> AnyElement;
}Expand description
Authoring conversion boundary (ADR 0039).
Most application code does not implement this directly; component crates typically expose
ergonomic constructors that return AnyElement (or helpers that build Elements).