reovim-client-model 0.14.4

Common client model for Reovim (platform-agnostic abstractions)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Rendered state types (client-side interpretation).
//!
//! These types represent the client's interpretation of wire format data.
//! They include computed values like screen positions, z-ordering, and
//! platform-specific rendering decisions.

pub mod overlay;
pub mod panel;
pub mod window;

pub use {
    overlay::{OverlayStack, RenderedOverlay},
    panel::PanelState,
    window::{Window, WindowTree},
};