[][src]Struct google_spectrum1_explorer::DeviceOwner

pub struct DeviceOwner {
    pub operator: Option<Vcard>,
    pub owner: Option<Vcard>,
}

This parameter contains device-owner information required as part of device registration. The regulatory domains may require additional parameters.

All contact information must be expressed using the structure defined by the vCard format specification. Only the contact fields of vCard are supported:

  • fn: Full name of an individual
  • org: Name of the organization
  • adr: Address fields
  • tel: Telephone numbers
  • email: Email addresses

Note that the vCard specification defines maximum lengths for each field.

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

Fields

operator: Option<Vcard>

The vCard contact information for the device operator is optional, but may be required by specific regulatory domains.

owner: Option<Vcard>

The vCard contact information for the individual or business that owns the device is required.

Trait Implementations

impl Clone for DeviceOwner[src]

impl Debug for DeviceOwner[src]

impl Default for DeviceOwner[src]

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

impl Part for DeviceOwner[src]

impl Serialize for DeviceOwner[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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 = Infallible

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> Typeable for T where
    T: Any