Skip to main content

IntoAny

Trait IntoAny 

Source
pub trait IntoAny {
    // Required method
    fn into_any(self) -> AnyView;
}
Expand description

Allows converting some view into AnyView.

Required Methods§

Source

fn into_any(self) -> AnyView

Converts the view into a type-erased AnyView.

Implementors§

Source§

impl<T> IntoAny for T
where T: Send + RenderHtml,