winio 0.11.0

Single-threaded async GUI runtime based on compio.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use winio_primitive::{Color, ColorTheme, Monitor};

use crate::stub::{Result, not_impl};

pub fn monitor_get_all() -> Result<Vec<Monitor>> {
    not_impl()
}

pub fn color_theme() -> Result<ColorTheme> {
    not_impl()
}

pub fn accent_color() -> Result<Color> {
    not_impl()
}