cover-files 0.1.24

A simple Rust tool for syncing directories with change detection
Documentation
use std::path::PathBuf;

pub struct ArchiveData {
    pub source: PathBuf,
    pub zip: bool,
    pub tar: bool,
    pub encrypt: bool,
    pub timestamp: bool,
}

impl ArchiveData {
    pub fn archive_output(&self) {
        println!("{}", self.zip);
        println!("{}", self.tar);
        println!("{}", self.encrypt);
        println!("{}", self.timestamp);
    }

    pub fn archive_options(&self) {
        self.archive_output();
    }
}