kml 0.13.0

KML support for Rust
Documentation
1
2
3
4
5
6
7
8
9
use crate::types::Alias;
use std::collections::HashMap;

/// `kml:ResourceMap`, [10.13](https://docs.ogc.org/is/12-007r2/12-007r2.html#591) in the KML specification.
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct ResourceMap {
    pub aliases: Vec<Alias>,
    pub attrs: HashMap<String, String>,
}