config.rs (266B)
1 use crate::export::ExporterKind; 2 3 #[derive(Clone)] 4 pub struct Config { 5 pub url: String, 6 pub dir: std::path::PathBuf, 7 pub exporter: ExporterKind, 8 pub thumb: bool, 9 pub files: bool, 10 pub resume: bool, 11 pub download_retries: u32, 12 }