pub struct DoubleClickOptions {
pub button: MouseButton,
pub delay_between_clicks: Duration,
}Expand description
Configuration for a double-click action.
Fields§
Mouse button to use; defaults to the left button.
delay_between_clicks: DurationDelay inserted between the two presses.
Trait Implementations§
Source§impl Clone for DoubleClickOptions
impl Clone for DoubleClickOptions
Source§fn clone(&self) -> DoubleClickOptions
fn clone(&self) -> DoubleClickOptions
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 DoubleClickOptions
impl Debug for DoubleClickOptions
Auto Trait Implementations§
impl Freeze for DoubleClickOptions
impl RefUnwindSafe for DoubleClickOptions
impl Send for DoubleClickOptions
impl Sync for DoubleClickOptions
impl Unpin for DoubleClickOptions
impl UnwindSafe for DoubleClickOptions
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