pub struct WlDataDeviceManager;
Expand description
data transfer interface
The wl_data_device_manager is a singleton global object that provides access to inter-client data transfer mechanisms such as copy-and-paste and drag-and-drop. These mechanisms are tied to a wl_seat and this interface lets a client get a wl_data_device corresponding to a wl_seat.
Depending on the version bound, the objects created from the bound wl_data_device_manager object will have different requirements for functioning properly. See wl_data_source.set_actions, wl_data_offer.accept and wl_data_offer.finish for details.
Trait Implementations§
Source§impl Debug for WlDataDeviceManager
impl Debug for WlDataDeviceManager
Source§impl Interface for WlDataDeviceManager
impl Interface for WlDataDeviceManager
Source§const NAME: &'static str = "wl_data_device_manager"
const NAME: &'static str = "wl_data_device_manager"
The name of this interface. This will correspond to the ‘name’ attribute
on the ‘interface’ element in the wayland protocol XML.
Auto Trait Implementations§
impl Freeze for WlDataDeviceManager
impl RefUnwindSafe for WlDataDeviceManager
impl Send for WlDataDeviceManager
impl Sync for WlDataDeviceManager
impl Unpin for WlDataDeviceManager
impl UnwindSafe for WlDataDeviceManager
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