usecrate::{Layout, Point};/// A pane that can be dragged.
pubtraitDraggable{/// Returns whether the [`Draggable`] with the given [`Layout`] can be picked
/// at the provided cursor position.
fncan_be_dragged_at(&self,
layout:Layout<'_>,
cursor_position: Point,
)->bool;}