[][src]Trait cursive::traits::Scrollable

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

Makes a view wrappable in a ScrollView.

Provided methods

fn scrollable(self) -> ScrollView<Self>

Wraps self in a ScrollView.

Loading content...

Implementors

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

Loading content...