2020-03-19 09:30:54 +01:00
|
|
|
/// A rectangular region in a [`PaneGrid`] used to display widgets.
|
|
|
|
|
///
|
2023-09-09 12:24:47 +02:00
|
|
|
/// [`PaneGrid`]: super::PaneGrid
|
2021-01-07 21:07:44 +01:00
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2020-03-14 05:26:59 +01:00
|
|
|
pub struct Pane(pub(super) usize);
|