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;