maverick_os 0.2.4

Maverick OS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#[derive(Clone)]
pub struct OsClipboard;

impl OsClipboard {
    pub fn new() -> Self {
        Self
    }

    pub fn get_content(&self) -> String {
        panic!("Clipboard not supported on macos")
    }

    pub fn set_content(&self, text: String) {
        panic!("Clipboard not supported on macos")
    }
}