1 2 3 4 5 6 7 8 9 10 11 12 13
// SPDX-License-Identifier: AGPL-3.0-or-later //! Sparse TUI windows. Pure state; IO stays in worker. mod detail; mod event; mod session; pub use detail::{DetailData, DetailState}; pub use event::EventView; pub use session::SessionView; const PREFETCH: usize = 8; const PAGE_FLOOR: usize = 24;