[][src]Struct google_spectrum1_explorer::DeviceValidity

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

is_valid: Option<bool>

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

reason: Option<String>

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.

device_desc: Option<DeviceDescriptor>

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

Trait Implementations

impl Part for DeviceValidity[src]

impl Clone for DeviceValidity[src]

impl Default for DeviceValidity[src]

impl Debug for DeviceValidity[src]

impl Serialize for DeviceValidity[src]

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

Auto Trait Implementations

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]