ecitygml-core 0.0.2-alpha.3

Core primitives and operations for processing CityGML data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, Clone, PartialEq, Eq, Hash, Ord, PartialOrd)]
pub struct StringAttribute {
    pub name: String,
    pub value: String,
}

impl StringAttribute {
    pub fn new(name: String, value: String) -> Self {
        Self { name, value }
    }
}