Enum tauri_runtime::webview::FileDropEvent [−][src]
#[non_exhaustive]
pub enum FileDropEvent {
Hovered(Vec<PathBuf>),
Dropped(Vec<PathBuf>),
Cancelled,
}Expand description
The file drop event payload.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
The file(s) have been dragged onto the window, but have not been dropped yet.
The file(s) have been dropped onto the window.
The file drop was aborted.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FileDropEventimpl Send for FileDropEventimpl Sync for FileDropEventimpl Unpin for FileDropEventimpl UnwindSafe for FileDropEventBlanket Implementations
Mutably borrows from an owned value. Read more