libbtrfs 0.0.30

Rust library for working with the btrfs filesystem
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(missing_docs)]
//! Module to work with a btrfs send stream
//!
//! For documentation on BTRFS Send Stream, please see:
//! [btrfs.readthedocs.io - dev-send-stream](https://btrfs.readthedocs.io/en/latest/dev/dev-send-stream.html).
mod recieve;
mod send;

pub use recieve::receive_stream;
pub use send::SendBuilder;