iced/widget/src/pane_grid/pane.rs
2023-09-09 18:59:17 +02:00

5 lines
209 B
Rust

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