summaryrefslogtreecommitdiffstats
path: root/widget/src/pane_grid/pane.rs
blob: d6fbab836ba16a0787e7900d041be1eace94ece0 (plain) (blame)
1
2
3
4
5
/// A rectangular region in a [`PaneGrid`] used to display widgets.
///
/// [`PaneGrid`]: crate::widget::PaneGrid
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Pane(pub(super) usize);