thin-provisioning-tools/src/thin/restore.rs

23 lines
439 B
Rust
Raw Normal View History

use anyhow::Result;
use std::path::Path;
2020-12-01 17:20:32 +05:30
use std::sync::Arc;
use crate::report::*;
//------------------------------------------
pub struct ThinRestoreOptions<'a> {
pub input: &'a Path,
pub output: &'a Path,
pub async_io: bool,
pub report: Arc<Report>,
}
//------------------------------------------
2020-12-01 17:20:32 +05:30
pub fn restore(_opts: ThinRestoreOptions) -> Result<()> {
todo!();
}
//------------------------------------------