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