more-wallpapers-fallback 5.0.0

Private implementation detail of more-wallpapers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use Result;

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

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

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