btrfs-disk 0.13.0

Platform-independent parsing and writing of btrfs on-disk structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Raw bindgen output for btrfs on-disk structures
//!
//! The types in this module are generated automatically from `btrfs_tree.h`
//! and `btrfs.h` by bindgen.  They represent the packed, little-endian
//! structures stored on disk.
//!
//! Prefer the typed wrappers in the sibling modules over using this module
//! directly.

mod bindings {
    #![allow(warnings)]
    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

pub use bindings::*;