blob: f9866407e89650e7dabd839122e70d8c6a84c0e1 (
plain) (
blame)
1
2
3
4
5
|
/// A rectangular region in a [`PaneGrid`] used to display widgets.
///
/// [`PaneGrid`]: struct.PaneGrid.html
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Pane(pub(super) usize);
|