Struct smithay_client_toolkit::data_device::DataSource [−][src]
pub struct DataSource { /* fields omitted */ }
Expand description
A data source for sending data though copy/paste or drag and drop
Implementations
pub fn new<F, S, It>(
mgr: &Attached<WlDataDeviceManager>,
mime_types: It,
callback: F
) -> DataSource where
F: FnMut(DataSourceEvent, DispatchData<'_>) + 'static,
S: Into<String>,
It: IntoIterator<Item = S>,
pub fn new<F, S, It>(
mgr: &Attached<WlDataDeviceManager>,
mime_types: It,
callback: F
) -> DataSource where
F: FnMut(DataSourceEvent, DispatchData<'_>) + 'static,
S: Into<String>,
It: IntoIterator<Item = S>,
Create a new data source
You’ll then need to provide it to a data device to send it either via selection (aka copy/paste) or via a drag and drop.