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

pub trait IntoBoxedView {
    fn as_boxed_view(self) -> Box<dyn View + 'static>;
}

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

Required methods

fn as_boxed_view(self) -> Box<dyn View + 'static>

Returns a Box<View>.

Loading content...

Implementations on Foreign Types

impl IntoBoxedView for Box<dyn View + 'static>[src]

Loading content...

Implementors

impl<T> IntoBoxedView for T where
    T: View
[src]

Loading content...