Skip to main content

btrfs_cli/rescue/
clear_ino_cache.rs

1use crate::{Format, Runnable};
2use anyhow::Result;
3use clap::Parser;
4use std::path::PathBuf;
5
6/// Remove leftover items pertaining to the deprecated inode cache feature
7#[derive(Parser, Debug)]
8pub struct RescueClearInoCacheCommand {
9    /// Path to the btrfs device
10    device: PathBuf,
11}
12
13impl Runnable for RescueClearInoCacheCommand {
14    fn run(&self, _format: Format, _dry_run: bool) -> Result<()> {
15        todo!("implement rescue clear-ino-cache")
16    }
17}