rust_less/selects/
base.rs

1#[derive(Debug)]
2pub struct Attr(pub String, pub String);
3
4impl Clone for Attr {
5    fn clone(&self) -> Self {
6        Self(self.0.clone(), self.1.clone())
7    }
8}
9
10#[derive(Debug)]
11pub struct Variable(pub String, pub String);
12
13impl Clone for Variable {
14    fn clone(&self) -> Self {
15        Self(self.0.clone(), self.1.clone())
16    }
17}