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]
impl Clone for Gpxfn clone(&self) -> Gpx[src]
fn clone(&self) -> GpxReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Default for Gpx[src]
impl Default for Gpximpl Debug for Gpx[src]
impl Debug for Gpx