blob: 4c574590c9287dd7337842806929b6a091efdaad (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/// A buffer for short-term storage and transfer within and between
/// applications.
pub trait Clipboard {
/// Returns the current content of the [`Clipboard`] as text.
///
/// [`Clipboard`]: trait.Clipboard.html
fn content(&self) -> Option<String>;
}
|