pub trait IntoBoxedView {
    fn into_boxed_view(self) -> Box<dyn View>;
}
Expand description

Represents a type that can be made into a Box<View>.

Required Methods§

Returns a Box<View>.

Implementations on Foreign Types§

Implementors§