wallpaper 3.2.0

Gets and sets the desktop wallpaper/background.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use Result;

pub fn get() -> Result<String> {
    Err("unsupported operating system".into())
}

pub fn set_from_path(_: &str) -> Result<()> {
    Err("unsupported operating system".into())
}

#[cfg(feature = "from_url")]
pub fn set_from_url(_: &str) -> Result<()> {
    Err("unsupported operating system".into())
}

pub fn set_mode(_: Mode) -> Result<()> {
    Err("unsupported operating system".into())
}