Struct google_spectrum1_explorer::DeviceValidity [] [src]

pub struct DeviceValidity {
    pub is_valid: Option<bool>,
    pub reason: Option<String>,
    pub device_desc: Option<DeviceDescriptor>,
}

The device validity element describes whether a particular device is valid to operate in the regulatory domain.

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

Fields

The validity status: true if the device is valid for operation, false otherwise. It will always be present.

If the device identifier is not valid, the database may include a reason. The reason may be in any language. The length of the value should not exceed 128 characters.

The descriptor of the device for which the validity check was requested. It will always be present.

Trait Implementations

impl Debug for DeviceValidity
[src]

Formats the value using the given formatter.

impl Clone for DeviceValidity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for DeviceValidity
[src]

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

impl Part for DeviceValidity
[src]