[][src]Struct gpx::Track

pub struct Track {
    pub name: Option<String>,
    pub comment: Option<String>,
    pub description: Option<String>,
    pub source: Option<String>,
    pub links: Vec<Link>,
    pub _type: Option<String>,
    pub segments: Vec<TrackSegment>,
}

Track represents an ordered list of points describing a path.

Fields

name: Option<String>

GPS name of track.

comment: Option<String>

GPS comment for track.

description: Option<String>

User description of track.

source: Option<String>

Source of data. Included to give user some idea of reliability and accuracy of data.

links: Vec<Link>

Links to external information about the track.

_type: Option<String>

Type (classification) of track.

segments: Vec<TrackSegment>

A Track Segment holds a list of Track Points which are logically connected in order. To represent a single GPS track where GPS reception was lost, or the GPS receiver was turned off, start a new Track Segment for each continuous span of track data.

Methods

impl Track[src]

pub fn multilinestring(&self) -> MultiLineString<f64>[src]

Gives the multi-linestring that this track represents, which is multiple linestrings.

pub fn new() -> Track[src]

Creates a new Track with default values.

use gpx::{Track, TrackSegment};

let mut track: Track = Track::new();

let segment = TrackSegment::new();
track.segments.push(segment);

Trait Implementations

impl Clone for Track[src]

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

Performs copy-assignment from source. Read more

impl Default for Track[src]

impl From<Track> for Geometry<f64>[src]

impl Debug for Track[src]

Auto Trait Implementations

impl Send for Track

impl Sync for Track

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]