Trait Clipboard
iced_native
pub trait Clipboard { fn content(&self) -> Option<String>; }
A buffer for short-term storage and transfer within and between applications.
fn content(&self) -> Option<String>
Returns the current content of the Clipboard as text.
Clipboard