pub trait IntoBoxedView {
    fn into_boxed_view(self) -> Box<dyn View + 'static, Global>Notable traits for Box<F, A>impl<F, A> Future for Box<F, A>where
    F: Future + Unpin + ?Sized,
    A: Allocator + 'static,
type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A>where
    I: Iterator + ?Sized,
    A: Allocator,
type Item = <I as Iterator>::Item;
; }
Expand description

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

Required Methods

Returns a Box<View>.

Implementations on Foreign Types

Implementors