zfs-cmd-api 0.2.0

Interact with zfs via the supported cmd line tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate zfs_cmd_api as zfs;

#[test]
fn zfs() {
    let _ = zfs::Zfs::default();
}

#[test]
fn zfs_list() {
    let zfs = zfs::Zfs::default();
    let _ = zfs.list_basic().expect("list failed");
}