Struct google_jobs4::api::DeviceInfo[][src]

pub struct DeviceInfo {
    pub device_type: Option<String>,
    pub id: Option<String>,
}

Device information collected from the job seeker, candidate, or other entity conducting the job search. Providing this information improves the quality of the search results across devices.

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

Fields

device_type: Option<String>

Type of the device.

id: Option<String>

A device-specific ID. The ID must be a unique identifier that distinguishes the device from other devices.

Trait Implementations

impl Clone for DeviceInfo[src]

impl Debug for DeviceInfo[src]

impl Default for DeviceInfo[src]

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

impl Part for DeviceInfo[src]

impl Serialize for DeviceInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for DeviceInfo[src]

impl Send for DeviceInfo[src]

impl Sync for DeviceInfo[src]

impl Unpin for DeviceInfo[src]

impl UnwindSafe for DeviceInfo[src]

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> Instrument 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.