iced_widget/pane_grid/
split.rs

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