Struct gpx::Metadata[][src]

pub struct Metadata {
    pub name: Option<String>,
    pub description: Option<String>,
    pub author: Option<Person>,
    pub links: Vec<Link>,
    pub time: Option<DateTime<Utc>>,
    pub keywords: Option<String>,
    pub bounds: Option<Rect<f64>>,
}

Metadata is information about the GPX file, author, and copyright restrictions.

Providing rich, meaningful information about your GPX files allows others to search for and use your GPS data.

Fields

The name of the GPX file.

A description of the contents of the GPX file.

The person or organization who created the GPX file.

URLs associated with the location described in the file.

The creation date of the file.

Keywords associated with the file. Search engines or databases can use this information to classify the data.

Bounds for the tracks in the GPX.

Trait Implementations

impl Clone for Metadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Metadata
[src]

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

impl Debug for Metadata
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Metadata

impl Sync for Metadata