winio 0.11.0

Single-threaded async GUI runtime based on compio.
Documentation
use std::future::Future;

use super::{Result, not_impl};

pub struct Runtime;

impl Runtime {
    pub fn new() -> Result<Self> {
        not_impl()
    }

    #[cfg(not(windows))]
    pub fn set_app_id(&mut self, _app_id: &str) -> Result<()> {
        not_impl()
    }

    pub fn block_on<F: Future>(&self, _future: F) -> F::Output {
        not_impl()
    }
}