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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".