[][src]Struct chirpstack_api::ns::GetDeviceProfileResponse

pub struct GetDeviceProfileResponse {
    pub device_profile: SingularPtrField<DeviceProfile>,
    pub created_at: SingularPtrField<Timestamp>,
    pub updated_at: SingularPtrField<Timestamp>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

device_profile: SingularPtrField<DeviceProfile>created_at: SingularPtrField<Timestamp>updated_at: SingularPtrField<Timestamp>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl GetDeviceProfileResponse[src]

pub fn new() -> GetDeviceProfileResponse[src]

pub fn get_device_profile(&self) -> &DeviceProfile[src]

pub fn clear_device_profile(&mut self)[src]

pub fn has_device_profile(&self) -> bool[src]

pub fn set_device_profile(&mut self, v: DeviceProfile)[src]

pub fn mut_device_profile(&mut self) -> &mut DeviceProfile[src]

pub fn take_device_profile(&mut self) -> DeviceProfile[src]

pub fn get_created_at(&self) -> &Timestamp[src]

pub fn clear_created_at(&mut self)[src]

pub fn has_created_at(&self) -> bool[src]

pub fn set_created_at(&mut self, v: Timestamp)[src]

pub fn mut_created_at(&mut self) -> &mut Timestamp[src]

pub fn take_created_at(&mut self) -> Timestamp[src]

pub fn get_updated_at(&self) -> &Timestamp[src]

pub fn clear_updated_at(&mut self)[src]

pub fn has_updated_at(&self) -> bool[src]

pub fn set_updated_at(&mut self, v: Timestamp)[src]

pub fn mut_updated_at(&mut self) -> &mut Timestamp[src]

pub fn take_updated_at(&mut self) -> Timestamp[src]

Trait Implementations

impl Clear for GetDeviceProfileResponse[src]

impl Clone for GetDeviceProfileResponse[src]

impl Debug for GetDeviceProfileResponse[src]

impl Default for GetDeviceProfileResponse[src]

impl<'a> Default for &'a GetDeviceProfileResponse[src]

impl Message for GetDeviceProfileResponse[src]

impl PartialEq<GetDeviceProfileResponse> for GetDeviceProfileResponse[src]

impl ProtobufValue for GetDeviceProfileResponse[src]

impl StructuralPartialEq for GetDeviceProfileResponse[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, 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.