Start work on property sheet compilation

This commit is contained in:
Max Brunsfeld 2019-01-09 18:09:55 -08:00
parent c0fad8b3c4
commit 6bd550ca87
7 changed files with 532 additions and 48 deletions

View file

@ -31,6 +31,12 @@ impl From<io::Error> for Error {
}
}
impl From<rsass::Error> for Error {
fn from(error: rsass::Error) -> Self {
Error(error.to_string())
}
}
impl From<String> for Error {
fn from(error: String) -> Self {
Error(error)