blob: 39d9f3ef28b8d80b74f8ccf3071dc9b6b01d2efb (
plain) (
tree)
|
|
/// A rectangular region in a [`PaneGrid`] used to display widgets.
///
/// [`PaneGrid`]: crate::widget::PaneGrid
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Pane(pub(super) usize);
|