Struct google_spectrum1_explorer::Vcard [] [src]

pub struct Vcard {
    pub org: Option<VcardTypedText>,
    pub tel: Option<VcardTelephone>,
    pub email: Option<VcardTypedText>,
    pub fn_: Option<String>,
    pub adr: Option<VcardAddress>,
}

A vCard-in-JSON message that contains only the fields needed for PAWS: - fn: Full name of an individual - org: Name of the organization - adr: Address fields - tel: Telephone numbers - email: Email addresses

This type is not used in any activity, and only used as part of another schema.

Fields

The organization associated with the registering entity.

A telephone number that can be used to call the contact.

An email address that can be used to reach the contact.

The full name of the contact person. For example: John A. Smith.

The street address of the entity.

Trait Implementations

impl Debug for Vcard
[src]

Formats the value using the given formatter.

impl Clone for Vcard
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Vcard
[src]

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

impl Part for Vcard
[src]