[][src]Trait cursive::view::Scrollable

pub trait Scrollable: View {
    pub fn scrollable(self) -> ScrollView<Self> { ... }
}

Makes a view wrappable in a ScrollView.

Provided methods

pub fn scrollable(self) -> ScrollView<Self>[src]

Wraps self in a ScrollView.

Loading content...

Implementors

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

Loading content...