Enum zaplib_components::DockItem
source · [−]pub enum DockItem<TItem> where
TItem: Clone, {
TabControl {
current: usize,
previous: usize,
tabs: Vec<DockTab<TItem>>,
},
Splitter {
pos: f32,
align: SplitterAlign,
axis: Axis,
first: Box<DockItem<TItem>>,
last: Box<DockItem<TItem>>,
},
}
Variants
TabControl
Splitter
Trait Implementations
Auto Trait Implementations
impl<TItem> RefUnwindSafe for DockItem<TItem> where
TItem: RefUnwindSafe,
impl<TItem> UnwindSafe for DockItem<TItem> where
TItem: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more