embedded-storage-file 0.2.0

file and in-memory interface for embedded-storage and embedded-storage-async
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod asyncronous;
mod backend_mmap;
mod backend_vec;
mod synhronous;

pub use asyncronous::*;
pub use backend_mmap::*;
pub use backend_vec::*;
pub use synhronous::*;