//! Actions that can be returned from right toolbar interactions
usesuper::tabs::RightPanelTab;/// Actions returned from right toolbar interactions
#[derive(Debug, Clone, PartialEq)]pubenumRightToolbarAction{/// No action taken
None,/// Tab was selected
SelectTab(RightPanelTab),/// Tab was closed
CloseTab,/// Panel width changed
ResizePanel(f32),}