[][src]Struct wayland_protocols::wlr::unstable::data_control::v1::client::zwlr_data_control_device_v1::ZwlrDataControlDeviceV1

pub struct ZwlrDataControlDeviceV1(_);

Implementations

impl ZwlrDataControlDeviceV1[src]

pub fn set_selection(&self, source: Option<&ZwlrDataControlSourceV1>)[src]

copy data to the selection

This request asks the compositor to set the selection to the data from the source on behalf of the client.

The given source may not be used in any further set_selection or set_primary_selection requests. Attempting to use a previously used source is a protocol error.

To unset the selection, set the source to NULL.

pub fn destroy(&self)[src]

destroy this data device

Destroys the data device object.

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

pub fn set_primary_selection(&self, source: Option<&ZwlrDataControlSourceV1>)[src]

copy data to the primary selection

This request asks the compositor to set the primary selection to the data from the source on behalf of the client.

The given source may not be used in any further set_selection or set_primary_selection requests. Attempting to use a previously used source is a protocol error.

To unset the primary selection, set the source to NULL.

The compositor will ignore this request if it does not support primary selection.

Only available since version 2 of the interface.

Trait Implementations

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

impl Clone for ZwlrDataControlDeviceV1[src]

impl Debug for ZwlrDataControlDeviceV1[src]

impl Eq for ZwlrDataControlDeviceV1[src]

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

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

impl Interface for ZwlrDataControlDeviceV1[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<ZwlrDataControlDeviceV1> for ZwlrDataControlDeviceV1[src]

impl StructuralEq for ZwlrDataControlDeviceV1[src]

impl StructuralPartialEq for ZwlrDataControlDeviceV1[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.