rabuf 0.3.0

randome access buffer for io
Documentation
1
2
3
4
5
6
7
use rabuf::BufFile;

fn main() {
    let (buf_file_size, chunk_size) = BufFile::get_internal_sizes();
    println!("BufFile size: {} bytes", buf_file_size);
    println!("Chunk size: {} bytes", chunk_size);
}