btrfs_cli/rescue/
fix_data_checksum.rs1use crate::{Format, Runnable};
2use anyhow::Result;
3use clap::Parser;
4use std::path::PathBuf;
5
6#[derive(Parser, Debug)]
8pub struct RescueFixDataChecksumCommand {
9 device: PathBuf,
11
12 #[clap(short, long)]
14 readonly: bool,
15
16 #[clap(short, long)]
18 interactive: bool,
19
20 #[clap(short, long)]
22 mirror: Option<u32>,
23}
24
25impl Runnable for RescueFixDataChecksumCommand {
26 fn run(&self, _format: Format, _dry_run: bool) -> Result<()> {
27 todo!("implement rescue fix-data-checksum")
28 }
29}