zfs-core 0.5.0

Rust interface to libzfs_core (lzc)
Documentation
1
2
3
4
5
6
fn main() {
    let z = zfs_core::Zfs::new().unwrap();

    z.sync("testpool", true).unwrap();
    println!("COMPLETE");
}