pub trait OverscrollBehaviorUtilities {
// Required methods
fn overscroll_behavior(self, behavior: OverscrollBehavior) -> Self;
fn overscroll_behavior_x(self, behavior: OverscrollBehavior) -> Self;
fn overscroll_behavior_y(self, behavior: OverscrollBehavior) -> Self;
}
Expand description
Trait for adding overscroll behavior utilities to a class builder
Required Methods§
fn overscroll_behavior(self, behavior: OverscrollBehavior) -> Self
fn overscroll_behavior_x(self, behavior: OverscrollBehavior) -> Self
fn overscroll_behavior_y(self, behavior: OverscrollBehavior) -> 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.