pub enum DockKind {
Empty,
Tabs {
tabs: Vec<PanelId>,
active: Option<PanelId>,
},
Split {
dir: SplitDir,
ratio: f32,
a: Box<DockNode>,
b: Box<DockNode>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DockKind
impl RefUnwindSafe for DockKind
impl Send for DockKind
impl Sync for DockKind
impl Unpin for DockKind
impl UnsafeUnpin for DockKind
impl UnwindSafe for DockKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more