pub enum Action {
MoveDividerToFront,
MoveDividerToBack,
ToggleBorder,
ToggleVisibleDivider,
ToggleMovableDivider,
ToggleOrientation,
}Expand description
Split panel action.
Variants§
MoveDividerToFront
Move divider towards front.
MoveDividerToBack
Move divider towards back.
ToggleBorder
Toggle border.
Intended for debugging.
ToggleVisibleDivider
Toggle visible divider.
Intended for debugging.
ToggleMovableDivider
Toggle movable divider.
Intended for debugging.
ToggleOrientation
Toggle orientation.
Will set the default action events for the orientation.
Intended for debugging.
Implementations§
Trait Implementations§
impl Copy for Action
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
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