[][src]Struct google_prod_tt_sasportal1_alpha1::SasPortalDeviceConfig

pub struct SasPortalDeviceConfig {
    pub category: Option<String>,
    pub air_interface: Option<SasPortalDeviceAirInterface>,
    pub update_time: Option<String>,
    pub user_id: Option<String>,
    pub measurement_capabilities: Option<Vec<String>>,
    pub state: Option<String>,
    pub call_sign: Option<String>,
    pub installation_params: Option<SasPortalInstallationParams>,
    pub model: Option<SasPortalDeviceModel>,
    pub is_signed: Option<bool>,
}

Information about the device configuration.

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

Fields

category: Option<String>

FCC category of the device.

air_interface: Option<SasPortalDeviceAirInterface>

Information about this device's air interface.

update_time: Option<String>

Output-only. The last time the device configuration was edited.

user_id: Option<String>

The identifier of a device user.

measurement_capabilities: Option<Vec<String>>

Measurement reporting capabilities of the device.

state: Option<String>

State of the configuration.

call_sign: Option<String>

The call sign of the device operator.

installation_params: Option<SasPortalInstallationParams>

Installation parameters for the device.

model: Option<SasPortalDeviceModel>

Information about this device model.

is_signed: Option<bool>

Output-only. Whether the configuration has been signed by a CPI.

Trait Implementations

impl Clone for SasPortalDeviceConfig[src]

impl Debug for SasPortalDeviceConfig[src]

impl Default for SasPortalDeviceConfig[src]

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

impl Part for SasPortalDeviceConfig[src]

impl Serialize for SasPortalDeviceConfig[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