Skip to main content

btrfs_cli/inspect/
tree_stats.rs

1use crate::{Format, Runnable};
2use anyhow::Result;
3use clap::Parser;
4use std::path::PathBuf;
5
6/// Print statistics about trees in a btrfs filesystem
7#[derive(Parser, Debug)]
8pub struct TreeStatsCommand {
9    /// Path to a file or directory on the btrfs filesystem
10    path: PathBuf,
11}
12
13impl Runnable for TreeStatsCommand {
14    fn run(&self, _format: Format, _dry_run: bool) -> Result<()> {
15        todo!("implement tree-stats")
16    }
17}