kml 0.13.0

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

/// Generic type used for supporting elements that are extensions or not currently implemented
#[derive(Clone, Debug, Default, PartialEq)]
pub struct Element {
    pub name: String,
    pub attrs: HashMap<String, String>,
    pub content: Option<String>,
    pub children: Vec<Element>,
}