Trait cursive::view::IntoBoxedView[][src]

pub trait IntoBoxedView {
    fn into_boxed_view(self) -> Box<dyn View + 'static, Global>

Notable traits for Box<I, A>

impl<I, A> Iterator for Box<I, A> where
    A: Allocator,
    I: Iterator + ?Sized
type Item = <I as Iterator>::Item;impl<F, A> Future for Box<F, A> where
    F: Future + Unpin + ?Sized,
    A: Allocator + 'static, 
type Output = <F as Future>::Output;
; }
Expand description

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

Required methods

Returns a Box<View>.

Implementations on Foreign Types

Implementors