[][src]Trait cursive_core::view::Scrollable

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

Loading content...