Struct zng_ext_input::gesture::ShortcutActions
source · pub struct ShortcutActions { /* private fields */ }
Expand description
Represents the resolved targets for a shortcut at a time.
You can use the GESTURES.shortcut_actions
method to get a value of this.
Implementations§
source§impl ShortcutActions
impl ShortcutActions
sourcepub fn focus(&self) -> Option<FocusTarget>
pub fn focus(&self) -> Option<FocusTarget>
Focus target.
If click
is some, this is a direct focus request to it, or if the first command is scoped on a widget this
is a direct focus request on the scope, or if this is some it is a direct or related request to the focus shortcut target.
sourcepub fn click(&self) -> Option<(&InteractionPath, ShortcutClick)>
pub fn click(&self) -> Option<(&InteractionPath, ShortcutClick)>
Click target and kind.
sourcepub fn commands(&self) -> &[Command]
pub fn commands(&self) -> &[Command]
Commands.
Only the first command may be scoped in a widget, others are scoped on the focused window or app.
sourcepub fn has_actions(&self) -> bool
pub fn has_actions(&self) -> bool
If any action was found for the shortcut.
Trait Implementations§
source§impl Clone for ShortcutActions
impl Clone for ShortcutActions
source§fn clone(&self) -> ShortcutActions
fn clone(&self) -> ShortcutActions
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for ShortcutActions
impl RefUnwindSafe for ShortcutActions
impl Send for ShortcutActions
impl Sync for ShortcutActions
impl Unpin for ShortcutActions
impl UnwindSafe for ShortcutActions
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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