Struct gpx::Gpx [] [src]

pub struct Gpx {
    pub version: String,
    pub metadata: Option<Metadata>,
    pub waypoints: Vec<Waypoint>,
    pub tracks: Vec<Track>,
}

Gpx is the root element in the XML file.

Fields

Metadata about the file.

A list of waypoints.

A list of tracks.

Trait Implementations

impl Clone for Gpx
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Gpx
[src]

[src]

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

impl Debug for Gpx
[src]

[src]

Formats the value using the given formatter.