summaryrefslogtreecommitdiffstats
path: root/native/src/clipboard.rs
blob: ecdccabfe5923174f21a21618fd5bf78e2c51360 (plain) (blame)
1
2
3
4
5
6
/// 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>;
}