ninja-files-data 0.1.0

Core data structures for ninja files
Documentation
1
2
3
4
5
6
7
use crate::Variable;

impl AsRef<str> for Variable {
    fn as_ref(&self) -> &str {
        self.0.as_ref()
    }
}