iced-yoda/native/src/clipboard.rs

7 lines
217 B
Rust
Raw Normal View History

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