Trait iced_native::clipboard::Clipboard[][src]

pub trait Clipboard {
    fn read(&self) -> Option<String>;
fn write(&mut self, contents: String); }

A buffer for short-term storage and transfer within and between applications.

Required methods

fn read(&self) -> Option<String>[src]

Reads the current content of the Clipboard as text.

fn write(&mut self, contents: String)[src]

Writes the given text contents to the Clipboard.

Loading content...

Implementors

impl Clipboard for Null[src]

Loading content...