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