/// A buffer for short-term storage and transfer within and between
/// applications.
#[derive(Debug, Clone, Copy)]pubstructClipboard;implClipboard{/// Creates a new [`Clipboard`].
pubfnnew()->Self{Self}/// Reads the current content of the [`Clipboard`] as text.
pubfnread(&self)->Option<String>{unimplemented!{}}/// Writes the given text contents to the [`Clipboard`].
pubfnwrite(&mutself, _contents: String){unimplemented!{}}}