[][src]Struct chirpstack_api::as_pb::external::api::FuotaDeploymentDeviceListItem

pub struct FuotaDeploymentDeviceListItem {
    pub dev_eui: String,
    pub device_name: String,
    pub state: i32,
    pub error_message: String,
    pub created_at: Option<Timestamp>,
    pub updated_at: Option<Timestamp>,
}

Fields

dev_eui: String

Device EUI (HEX encoded).

device_name: String

Device name.

state: i32

Device state.

error_message: String

Error message (in case of error state).

created_at: Option<Timestamp>

Created at timestamp.

updated_at: Option<Timestamp>

Updated at timestamp.

Implementations

impl FuotaDeploymentDeviceListItem[src]

pub fn state(&self) -> FuotaDeploymentDeviceState[src]

Returns the enum value of state, or the default if the field is set to an invalid enum value.

pub fn set_state(&mut self, value: FuotaDeploymentDeviceState)[src]

Sets state to the provided enum value.

Trait Implementations

impl Clone for FuotaDeploymentDeviceListItem[src]

impl Debug for FuotaDeploymentDeviceListItem[src]

impl Default for FuotaDeploymentDeviceListItem[src]

impl Message for FuotaDeploymentDeviceListItem[src]

impl PartialEq<FuotaDeploymentDeviceListItem> for FuotaDeploymentDeviceListItem[src]

impl StructuralPartialEq for FuotaDeploymentDeviceListItem[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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]