egml-io 0.0.2-alpha.1

IO operations for processing GML data.
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, PartialEq, Clone)]
pub struct GmlRing {
    #[serde(rename = "@id")]
    pub id: Option<String>,
    // TODO: needs to be implemented
}