maverick_os 0.2.5

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) {
    
    }

    pub fn share_image(&self, rgba_image: RgbaImage) {
       
    }
}