Struct iced_native::mouse::click::Click[][src]

pub struct Click { /* fields omitted */ }

A mouse click.

Implementations

impl Click[src]

pub fn new(position: Point, previous: Option<Click>) -> Click[src]

Creates a new Click with the given position and previous last Click.

pub fn kind(&self) -> Kind[src]

Returns the Kind of Click.

Trait Implementations

impl Clone for Click[src]

impl Copy for Click[src]

impl Debug for Click[src]

Auto Trait Implementations

impl RefUnwindSafe for Click

impl Send for Click

impl Sync for Click

impl Unpin for Click

impl UnwindSafe for Click

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,