pub enum ClickAction {
Show 33 variants
ToggleBrowser,
ToggleFileSelection(usize),
ToggleQueueSelection(usize),
SelectMediaPoolItem(usize),
SelectQueueItem(usize),
FocusMediaPool,
FocusQueue,
FocusExport,
FocusPreview,
AddSelectedToQueue,
AddAllToQueue,
RenderSelected,
RenderAll,
ClearQueue,
CycleCodec,
CycleGamut,
CycleTransfer,
CycleProfile,
CycleRate,
ImportOption1,
ImportOption2,
ClosePopup,
ToggleHelp,
BrowserNavigate(usize),
BrowserSelectAndEnter(usize),
BrowserEnter,
BrowserGoUp,
RemoveSelectedFromMediaPool,
ToggleBrowserSelection(usize),
FavouriteNavigate(usize),
OpenPresetPicker,
GradeSlider(usize),
FocusGrade,
}Variants§
ToggleBrowser
ToggleFileSelection(usize)
ToggleQueueSelection(usize)
SelectMediaPoolItem(usize)
SelectQueueItem(usize)
FocusMediaPool
FocusQueue
FocusExport
FocusPreview
AddSelectedToQueue
AddAllToQueue
RenderSelected
RenderAll
ClearQueue
CycleCodec
CycleGamut
CycleTransfer
CycleProfile
CycleRate
ImportOption1
ImportOption2
ClosePopup
ToggleHelp
BrowserSelectAndEnter(usize)
BrowserEnter
BrowserGoUp
RemoveSelectedFromMediaPool
ToggleBrowserSelection(usize)
OpenPresetPicker
GradeSlider(usize)
FocusGrade
Trait Implementations§
Source§impl Clone for ClickAction
impl Clone for ClickAction
Source§fn clone(&self) -> ClickAction
fn clone(&self) -> ClickAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClickAction
impl Debug for ClickAction
Source§impl PartialEq for ClickAction
impl PartialEq for ClickAction
Source§fn eq(&self, other: &ClickAction) -> bool
fn eq(&self, other: &ClickAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickAction
Auto Trait Implementations§
impl Freeze for ClickAction
impl RefUnwindSafe for ClickAction
impl Send for ClickAction
impl Sync for ClickAction
impl Unpin for ClickAction
impl UnsafeUnpin for ClickAction
impl UnwindSafe for ClickAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more