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

5 lines
229 B
Rust

/// A divider that splits a region in a [`PaneGrid`] into two different panes.
///
/// [`PaneGrid`]: crate::widget::PaneGrid
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Split(pub(super) usize);