ruvector-memopt 0.5.0

Intelligent cross-platform memory optimizer with neural learning capabilities for smart optimization decisions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Real-time dashboard for memory monitoring
//!
//! Provides data structures and API for WASM-based browser dashboard
//! or native terminal dashboard.

pub mod data;
#[cfg(target_os = "windows")]
pub mod server;

pub use data::{DashboardData, DashboardUpdate, SystemMetrics};
#[cfg(target_os = "windows")]
pub use server::DashboardServer;