1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use std::path::{Path, PathBuf};
#[derive(Debug, Default, Clone)]
#[must_use]
pub struct Config {
pub(crate) out_dir: PathBuf,
pub(crate) raw: bool,
pub(crate) spec: PathBuf,
}
impl Config {
pub fn new() -> Self {
Self::default()
}
pub fn out_dir(mut self, out_dir: impl AsRef<Path>) -> Self {
self.out_dir = out_dir.as_ref().to_path_buf();
self
}
pub fn raw(mut self, value: bool) -> Self {
self.raw = value;
self
}
pub fn spec(mut self, spec: impl AsRef<Path>) -> Self {
self.spec = spec.as_ref().to_path_buf();
self
}
}