Cross-platform virtual filesystem with pluggable backends
Dependencies
mizchi/vfs does not have a README file
pub(open) trait FileSystem {
async fn mkdir_p(Self, String) -> Unit raise VfsError
async fn write_file(Self, String, Bytes) -> Unit raise VfsError
async fn write_string(Self, String, String) -> Unit raise VfsError
async fn remove_file(Self, String) -> Unit raise VfsError
async fn remove_dir(Self, String) -> Unit raise VfsError
}pub suberror VfsError {
VfsError(String)
}impl Show for SnapshotFileCross-platform virtual filesystem with pluggable backends
Dependencies