iced/widget/src/pane_grid/pane.rs
2023-03-04 05:37:11 +01:00

5 lines
217 B
Rust

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