pub enum DataSourceEvent {
    Send {
        mime_type: String,
        pipe: WritePipe,
    },
    Target {
        mime_type: Option<String>,
    },
    Action {
        action: DndAction,
    },
    Cancelled,
    Dropped,
    Finished,
}
Expand description

Possible events a data source needs to react to

Variants§

§

Send

Fields

§mime_type: String

Requested mime type

§pipe: WritePipe

Pipe to write into

Write the offered data for selected mime type

This can happen several times during a dnd setup, and does not mean the action is finished.

§

Target

Fields

§mime_type: Option<String>

The type accepted by the target

Target mime type

Notifies that the target accepted a given mime type. You can use it to provide feedback (changing the icon of the drag’n’drop for example).

Can be None if the current target does not accept any of the proposed mime types.

This event can be emitted several times during the process

§

Action

Fields

§action: DndAction

The action chosen by the target

Notifies of the current selected action for the drag’n’drop

Can only happen for data sources used during a drag’n’drop.

This can change several times, the last received defines which action should actually be taken.

§

Cancelled

The action using this data source was cancelled.

Once this event is received, the DataSource can not be used any more, and you should drop it for cleanup.

Happens if the user cancels the current drag’n’drop, or replaces the selection buffer.

§

Dropped

The user performed the “drop” during a drag’n’drop

This does not mean the operation is finished (the operation can still be cancelled afterwards).

You are not guaranteed to receive this event at some point, as the compositor may cancel the action before the user drops.

This event can only be generated on sources used for drag’n’drop, not selection sources.

§

Finished

The action is finished, this data source will not be used any more

If the selected drag’n’drop action was “move”, you can now delete the underlying resource.

This event can only be generated on sources used for drag’n’drop, not selection sources.

Trait Implementations§

source§

impl Debug for DataSourceEvent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.