decant-memflow 0.1.0

MemflowBackend: the connector over guest physical RAM. Feature-gated (memflow). Connectors load at runtime as plugins, so this compiles without a VM but only runs on the VM host (see docs/DECISIONS.md ADR-0005).
Documentation
1
2
3
4
5
6
7
8
//! memflow-backed Decant memory backend, enabled with the `memflow` feature.

#![allow(dead_code)]

#[cfg(feature = "memflow")]
mod backend;
#[cfg(feature = "memflow")]
pub use backend::MemflowBackend;