[][src]Struct gpx::Metadata

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

name: Option<String>

The name of the GPX file.

description: Option<String>

A description of the contents of the GPX file.

author: Option<Person>

The person or organization who created the GPX file.

links: Vec<Link>

URLs associated with the location described in the file.

time: Option<DateTime<Utc>>

The creation date of the file.

keywords: Option<String>

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

bounds: Option<Rect<f64>>

Bounds for the tracks in the GPX.

Trait Implementations

impl Clone for Metadata[src]

impl Debug for Metadata[src]

impl Default for Metadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.