pub trait IntoUiElementInExt<H: UiHost>: IntoUiElement<H> + Sized {
// Provided method
fn into_element_in<'a, Cx>(self, cx: &mut Cx) -> AnyElement
where Cx: ElementContextAccess<'a, H>,
H: 'a { ... }
}Expand description
Explicit landing helpers for surfaces that only expose ElementContextAccess rather than a
raw &mut ElementContext<...>.
Provided Methods§
fn into_element_in<'a, Cx>(self, cx: &mut Cx) -> AnyElementwhere
Cx: ElementContextAccess<'a, H>,
H: 'a,
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.