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 of the Gpx file.

Metadata about the file.

A list of waypoints.

A list of tracks.

Trait Implementations

impl Clone for Gpx
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Gpx
[src]

Returns the "default value" for a type. Read more

impl Debug for Gpx
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Gpx

impl Sync for Gpx