ScrollExt

Trait ScrollExt 

Source
pub trait ScrollExt {
    // Required method
    fn scroll(self) -> Scroll;
}
Expand description

A trait that adds a scroll method to any type that implements IntoView.

Required Methods§

Source

fn scroll(self) -> Scroll

Wrap the view in a scroll view.

Implementors§

Source§

impl<T: IntoView + 'static> ScrollExt for T