Struct gpx::Person[][src]

pub struct Person {
    pub name: Option<String>,
    pub email: Option<String>,
    pub link: Option<Link>,
}

Person represents a person or organization.

Fields

Name of person or organization.

Email address.

Link to Web site or other external information about person.

Trait Implementations

impl Clone for Person
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Person
[src]

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

impl Debug for Person
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Person

impl Sync for Person