maverick_os 0.3.1

Maverick OS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use image::RgbaImage;

#[derive(Clone)]
pub struct OsShare;

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

    pub fn share(&self, _text: &str) {
        unimplemented!() 
    }

    pub fn share_image(&self, _rgba_image: RgbaImage) {
        unimplemented!() 
    }
}