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

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

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

Required methods

fn as_boxed_view(self) -> Box<dyn View>

Returns a Box<View>.

Loading content...

Implementations on Foreign Types

impl IntoBoxedView for Box<dyn View>[src]

Loading content...

Implementors

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

Loading content...