Struct smithay_client_toolkit::data_device::DataSource[][src]

pub struct DataSource { /* fields omitted */ }

A data source for sending data though copy/paste or drag and drop

Implementations

impl DataSource[src]

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>, 
[src]

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.

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, 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.