rust-less 0.1.0

A LESS to CSS parser and converter library written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug)]
pub struct Attr(pub String, pub String);

impl Clone for Attr {
    fn clone(&self) -> Self {
        Self(self.0.clone(), self.1.clone())
    }
}

#[derive(Debug)]
pub struct Variable(pub String, pub String);

impl Clone for Variable {
    fn clone(&self) -> Self {
        Self(self.0.clone(), self.1.clone())
    }
}