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

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

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

Required methods

pub fn as_boxed_view(self) -> Box<dyn View + 'static, Global>[src]

Returns a Box<View>.

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

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

Loading content...