ecitygml-core 0.0.2-alpha.5

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 IntAttribute {
    pub name: String,
    pub value: i64,
}

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