iced_widget/pane_grid/
pane.rs

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