loeres_backend_std/lib.rs
1//! `loeres-backend-std` — dynamic, heap-backed storage for the server.
2//!
3//! Environment: `std`, dynamic allocation. Provides dense/sparse storage
4//! adapters and optional third-party numerical backends, all implementing the
5//! `loeres` access contracts. Server-only: it must never be depended on
6//! by `loeres-device` or `loeres-backend-static`.
7//!
8//! Public module topography (external design §1.5):
9//! `dense`, `sparse`, `view`, `batch`, `adapter`.
10//!
11//! Phase 0 skeleton: modules are documented placeholders.
12
13pub mod adapter;
14pub mod batch;
15pub mod dense;
16pub mod sparse;
17pub mod view;