Skip to main content

btrfs_disk/
raw.rs

1//! # Raw bindgen output for btrfs on-disk structures
2//!
3//! The types in this module are generated automatically from `btrfs_tree.h`
4//! and `btrfs.h` by bindgen.  They represent the packed, little-endian
5//! structures stored on disk.
6//!
7//! Prefer the typed wrappers in the sibling modules over using this module
8//! directly.
9
10mod bindings {
11    #![allow(warnings)]
12    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
13}
14
15pub use bindings::*;