Implement write support for clipboard_x11
This commit is contained in:
parent
aeda90d4ef
commit
a97dfae8f6
11 changed files with 496 additions and 185 deletions
|
|
@ -35,4 +35,8 @@ impl ClipboardProvider for Clipboard {
|
|||
fn read(&self) -> Result<String, Box<dyn Error>> {
|
||||
Err(Box::new(AndroidClipboardError::Unimplemented))
|
||||
}
|
||||
|
||||
fn write(&mut self, contents: String) -> Result<(), Box<dyn Error>> {
|
||||
Err(Box::new(AndroidClipboardError::Unimplemented))
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue