btrfs-uapi 0.1.0

Typed Rust wrappers around the btrfs userspace interface (ioctls and sysfs)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::{env, path::PathBuf};

fn main() {
    let btrfs_bindings = bindgen::Builder::default()
        .header("src/raw/btrfs_tree.h")
        .parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
        .allowlist_file("src/raw/btrfs.h")
        .allowlist_file("src/raw/btrfs_tree.h")
        .generate()
        .expect("Unable to generate bindings");

    let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
    btrfs_bindings
        .write_to_file(out_path.join("bindings.rs"))
        .expect("Couldn't write bindings!");
}