Struct gpx::Gpx
[−]
[src]
pub struct Gpx {
pub version: GpxVersion,
pub metadata: Option<Metadata>,
pub waypoints: Vec<Waypoint>,
pub tracks: Vec<Track>,
}Gpx is the root element in the XML file.
Fields
version: GpxVersion
Version of the Gpx file.
metadata: Option<Metadata>
Metadata about the file.
waypoints: Vec<Waypoint>
A list of waypoints.
tracks: Vec<Track>
A list of tracks.
Trait Implementations
impl Clone for Gpx[src]
fn clone(&self) -> Gpx[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more