pub enum PanelInputKind {
DynamicList,
FixedSlots,
}Expand description
Whether a preset accepts a dynamic list of panels or fixed named slots.
Variants§
DynamicList
Accepts an arbitrary number of panels (e.g. master_stack(["a", "b", "c"])).
FixedSlots
Accepts a fixed set of named slots (e.g. sidebar("nav", "content")).
Trait Implementations§
Source§impl Clone for PanelInputKind
impl Clone for PanelInputKind
Source§fn clone(&self) -> PanelInputKind
fn clone(&self) -> PanelInputKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PanelInputKind
impl Debug for PanelInputKind
Source§impl PartialEq for PanelInputKind
impl PartialEq for PanelInputKind
impl Copy for PanelInputKind
impl Eq for PanelInputKind
impl StructuralPartialEq for PanelInputKind
Auto Trait Implementations§
impl Freeze for PanelInputKind
impl RefUnwindSafe for PanelInputKind
impl Send for PanelInputKind
impl Sync for PanelInputKind
impl Unpin for PanelInputKind
impl UnsafeUnpin for PanelInputKind
impl UnwindSafe for PanelInputKind
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