pub struct DataDeviceManagerState { /* private fields */ }Implementations§
Source§impl DataDeviceManagerState
impl DataDeviceManagerState
pub fn bind<State>(
globals: &GlobalList,
qh: &QueueHandle<State>,
) -> Result<Self, BindError>where
State: Dispatch<WlDataDeviceManager, GlobalData, State> + 'static,
pub fn data_device_manager(&self) -> &WlDataDeviceManager
Sourcepub fn create_copy_paste_source<D, T: ToString>(
&self,
qh: &QueueHandle<D>,
mime_types: impl IntoIterator<Item = T>,
) -> CopyPasteSourcewhere
D: Dispatch<WlDataSource, DataSourceData<()>> + 'static,
pub fn create_copy_paste_source<D, T: ToString>(
&self,
qh: &QueueHandle<D>,
mime_types: impl IntoIterator<Item = T>,
) -> CopyPasteSourcewhere
D: Dispatch<WlDataSource, DataSourceData<()>> + 'static,
creates a data source for copy paste
Sourcepub fn create_drag_and_drop_source<D, T: ToString>(
&self,
qh: &QueueHandle<D>,
mime_types: impl IntoIterator<Item = T>,
dnd_actions: DndAction,
) -> DragSourcewhere
D: Dispatch<WlDataSource, DataSourceData<()>> + 'static,
pub fn create_drag_and_drop_source<D, T: ToString>(
&self,
qh: &QueueHandle<D>,
mime_types: impl IntoIterator<Item = T>,
dnd_actions: DndAction,
) -> DragSourcewhere
D: Dispatch<WlDataSource, DataSourceData<()>> + 'static,
creates a data source for drag and drop
Sourcepub fn get_data_device<D>(
&self,
qh: &QueueHandle<D>,
seat: &WlSeat,
) -> DataDevicewhere
D: Dispatch<WlDataDevice, DataDeviceData> + 'static,
pub fn get_data_device<D>(
&self,
qh: &QueueHandle<D>,
seat: &WlSeat,
) -> DataDevicewhere
D: Dispatch<WlDataDevice, DataDeviceData> + 'static,
create a new data device for a given seat
Trait Implementations§
Source§impl Debug for DataDeviceManagerState
impl Debug for DataDeviceManagerState
Source§impl ProvidesBoundGlobal<WlDataDeviceManager, 3> for DataDeviceManagerState
impl ProvidesBoundGlobal<WlDataDeviceManager, 3> for DataDeviceManagerState
fn bound_global(&self) -> Result<WlDataDeviceManager, GlobalError>
fn with_min_version(&self, version: u32) -> Result<I, GlobalError>
Auto Trait Implementations§
impl Freeze for DataDeviceManagerState
impl !RefUnwindSafe for DataDeviceManagerState
impl Send for DataDeviceManagerState
impl Sync for DataDeviceManagerState
impl Unpin for DataDeviceManagerState
impl UnsafeUnpin for DataDeviceManagerState
impl !UnwindSafe for DataDeviceManagerState
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.