feat: add conversion from string for MimeType

This commit is contained in:
Ashley Wulber 2024-03-14 16:28:26 -04:00
parent f03396e009
commit 1879b30d49
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820

14
src/dnd/mod.rs Normal file
View file

@ -0,0 +1,14 @@
use crate::Clipboard;
impl Clipboard {
/// Set up DnD operations for the Clipboard
pub fn init_dnd() {}
/// Start a DnD operation on the given surface with some data
pub fn start_dnd() {}
/// End the current DnD operation, if there is one
pub fn end_dnd() {}
}