Trait IntoAny

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

Allows converting some view into AnyView.

Required Methods§

fn into_any(self) -> AnyView

Converts the view into a type-erased AnyView.

Implementors§

§

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