blob: 16975abc17c96f3d42856b29e93abe994bbd81b7 (
plain) (
blame)
1
2
3
4
5
|
/// 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);
|