gtk-future-executor 0.1.0

basic building blocks for writing async GUI code with Gtk-rs
Documentation
1
2
3
4
5
6
7
8
9
10
//! This crate provides basic building blocks for writing async GUI code with Gtk-rs:
//! 1. `GtkEventLoopAsyncExecutor` - an executor for executing futures that may manipulate GUI widgets
//! 2. `Promise` - an implementation of [futures::Future] that is often useful for GUI code

mod executor;
mod promise;

pub use executor::GtkEventLoopAsyncExecutor;
pub use promise::Promise;