Trait ScrollableExt

Source
pub trait ScrollableExt: Sized {
    // Required method
    fn get_effect(&mut self) -> &mut EffectData;

    // Provided method
    fn scrollable(self, scrollable: impl Into<bool>) -> Self { ... }
}

Required Methods§

Source

fn get_effect(&mut self) -> &mut EffectData

Provided Methods§

Source

fn scrollable(self, scrollable: impl Into<bool>) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§