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