liboxen 0.50.1

Oxen is a fast, unstructured data version control, to help version large machine learning datasets written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

#[derive(Clone, Debug, Default)]
pub struct CleanOpts {
    /// Scope the cleanup to these paths (relative to cwd or absolute).
    /// Empty means the whole working tree.
    pub paths: Vec<PathBuf>,
    /// Without `force`, `clean` runs as a dry-run and makes no filesystem changes.
    pub force: bool,
}