relm4 0.5.0-rc.1

An idiomatic GUI library inspired by Elm and based on gtk4-rs
Documentation
//! Containers similar to [`std::collections`] that can be used to store factory data.

mod vec_deque;
pub use vec_deque::{AsyncFactoryVecDeque, AsyncFactoryVecDequeGuard};

use crate::factory::DynamicIndex;

#[derive(Debug)]
struct RenderedState {
    uid: u16,
    #[cfg(feature = "libadwaita")]
    widget_hash: u64,
}

#[derive(Debug)]
struct ModelStateValue {
    index: DynamicIndex,
    uid: u16,
    changed: bool,
}