cover-files 0.1.24

A simple Rust tool for syncing directories with change detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub struct ListData {
    pub archives: bool,
    pub schedules: bool,
    pub details: bool,
}

impl ListData {
    pub fn list_output(&self) {
        println!("{}", self.archives);
        println!("{}", self.schedules);
        println!("{}", self.details);
    }

    pub fn list_options(&self) {
        self.list_output();
    }
}