[][src]Struct google_spectrum1_explorer::Vcard

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

org: Option<VcardTypedText>

The organization associated with the registering entity.

tel: Option<VcardTelephone>

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

email: Option<VcardTypedText>

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

fn_: Option<String>

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

adr: Option<VcardAddress>

The street address of the entity.

Trait Implementations

impl Part for Vcard[src]

impl Clone for Vcard[src]

impl Default for Vcard[src]

impl Debug for Vcard[src]

impl Serialize for Vcard[src]

impl<'de> Deserialize<'de> for Vcard[src]

Auto Trait Implementations

impl Send for Vcard

impl Sync for Vcard

impl Unpin for Vcard

impl UnwindSafe for Vcard

impl RefUnwindSafe for Vcard

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]