pub trait SwipeableImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_cancel_progress(&self) -> f64 { ... }
fn parent_distance(&self) -> f64 { ... }
fn parent_progress(&self) -> f64 { ... }
fn parent_snap_points(&self) -> Vec<f64> { ... }
fn parent_swipe_area(
&self,
navigation_direction: NavigationDirection,
is_drag: bool,
) -> Rectangle { ... }
}
Provided Methods§
fn parent_cancel_progress(&self) -> f64
fn parent_distance(&self) -> f64
fn parent_progress(&self) -> f64
fn parent_snap_points(&self) -> Vec<f64>
fn parent_swipe_area( &self, navigation_direction: NavigationDirection, is_drag: bool, ) -> Rectangle
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.