[][src]Struct wayland_protocols::unstable::input_timestamps::v1::client::zwp_input_timestamps_manager_v1::ZwpInputTimestampsManagerV1

pub struct ZwpInputTimestampsManagerV1(_);

Implementations

impl ZwpInputTimestampsManagerV1[src]

pub fn destroy(&self)[src]

destroy the input timestamps manager object

Informs the server that the client will no longer be using this protocol object. Existing objects created by this object are not affected.

This is a destructor, you cannot send requests to this object any longer once this method is called.

pub fn get_keyboard_timestamps(
    &self,
    keyboard: &WlKeyboard
) -> Main<ZwpInputTimestampsV1>
[src]

subscribe to high-resolution keyboard timestamp events

Creates a new input timestamps object that represents a subscription to high-resolution timestamp events for all wl_keyboard events that carry a timestamp.

If the associated wl_keyboard object is invalidated, either through client action (e.g. release) or server-side changes, the input timestamps object becomes inert and the client should destroy it by calling zwp_input_timestamps_v1.destroy.

pub fn get_pointer_timestamps(
    &self,
    pointer: &WlPointer
) -> Main<ZwpInputTimestampsV1>
[src]

subscribe to high-resolution pointer timestamp events

Creates a new input timestamps object that represents a subscription to high-resolution timestamp events for all wl_pointer events that carry a timestamp.

If the associated wl_pointer object is invalidated, either through client action (e.g. release) or server-side changes, the input timestamps object becomes inert and the client should destroy it by calling zwp_input_timestamps_v1.destroy.

pub fn get_touch_timestamps(
    &self,
    touch: &WlTouch
) -> Main<ZwpInputTimestampsV1>
[src]

subscribe to high-resolution touch timestamp events

Creates a new input timestamps object that represents a subscription to high-resolution timestamp events for all wl_touch events that carry a timestamp.

If the associated wl_touch object becomes invalid, either through client action (e.g. release) or server-side changes, the input timestamps object becomes inert and the client should destroy it by calling zwp_input_timestamps_v1.destroy.

Trait Implementations

impl AsRef<Proxy<ZwpInputTimestampsManagerV1>> for ZwpInputTimestampsManagerV1[src]

impl Clone for ZwpInputTimestampsManagerV1[src]

impl Debug for ZwpInputTimestampsManagerV1[src]

impl Eq for ZwpInputTimestampsManagerV1[src]

impl From<Proxy<ZwpInputTimestampsManagerV1>> for ZwpInputTimestampsManagerV1[src]

impl From<ZwpInputTimestampsManagerV1> for Proxy<ZwpInputTimestampsManagerV1>[src]

impl Interface for ZwpInputTimestampsManagerV1[src]

type Request = Request

Set of requests associated to this interface Read more

type Event = Event

Set of events associated to this interface Read more

impl PartialEq<ZwpInputTimestampsManagerV1> for ZwpInputTimestampsManagerV1[src]

impl StructuralEq for ZwpInputTimestampsManagerV1[src]

impl StructuralPartialEq for ZwpInputTimestampsManagerV1[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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.