Abstract FS API for Rust
This crate offers a trait that looks exactly like the std::fs
interface and supplies implementations for the os filesystem and an in-memory filesystem.
Useful for substituting the FileSystem in tests and benchmarks
use FileSystem;
use OsFileSystem;
use MemoryFileSystem;