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

pub trait Scrollable: View + Sized {
    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: View> Scrollable for T[src]

Loading content...