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

pub struct DataSource { /* fields omitted */ }

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

Methods

impl DataSource[src]

pub fn new<Impl>(
    mgr: &WlDataDeviceManager,
    mime_types: &[&str],
    implem: Impl
) -> DataSource where
    Impl: FnMut(DataSourceEvent) + 'static, 
[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> 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.