kml 0.7.0

KML support for Rust
Documentation
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>,
}