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: Option<String>
Name of person or organization.
email: Option<String>
Email address.
link: Option<Link>
Link to Web site or other external information about person.
Trait Implementations
impl Clone for Person[src]
fn clone(&self) -> Person[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more