rsext4 0.7.0

A lightweight ext4 file system.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Block device abstractions, buffering, and JBD2 integration.

mod buffer;
mod cached_device;
mod journal;
mod traits;

pub use buffer::BlockBuffer;
pub use journal::{Jbd2Dev, Jbd2RunState};
pub use traits::{BlockDevice, INeedBlockdevToWrite};