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