[][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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Metadata[src]

impl Debug for Metadata[src]

Auto Trait Implementations

impl Send for Metadata

impl Sync for Metadata

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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