flow-wm 0.2.0

A scrolling, infinite-horizontal-canvas tiling window manager for Windows
1
2
3
4
5
6
7
8
9
10
11
//! Loadout save/restore data model.
//!
//! Pure serde types for serializing workspace snapshots to JSON. The daemon
//! reads/writes the loadout file — this module has no I/O or Win32 dependencies.

mod types;

pub use types::{
    ColumnSnapshot, FloatingEntry, LoadoutFile, RectJson, RowSnapshot, ScrollingSnapshot,
    WindowRef, WorkspaceSnapshot,
};