[][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: &Proxy<WlDataDeviceManager>,
    mime_types: &[&str],
    implem: Impl
) -> DataSource where
    Impl: FnMut(DataSourceEvent) + Send + '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.

pub unsafe fn new_nonsend<Impl>(
    mgr: &Proxy<WlDataDeviceManager>,
    mime_types: &[&str],
    implem: Impl,
    token: &QueueToken
) -> DataSource where
    Impl: FnMut(DataSourceEvent) + 'static, 
[src]

Create a data source

Like new, but the implementation does not require to be Send.

unsafety: for the same reasons as NewProxy::implement_nonsend

Auto Trait Implementations

impl Unpin for DataSource

impl Sync for DataSource

impl Send for DataSource

impl !UnwindSafe for DataSource

impl !RefUnwindSafe for DataSource

Blanket Implementations

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]