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§

Object Safety§

This trait is not object safe.

Implementors§