[][src]Struct chirpstack_api::ns::GetRoutingProfileResponse

pub struct GetRoutingProfileResponse {
    pub routing_profile: SingularPtrField<RoutingProfile>,
    pub created_at: SingularPtrField<Timestamp>,
    pub updated_at: SingularPtrField<Timestamp>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

routing_profile: SingularPtrField<RoutingProfile>created_at: SingularPtrField<Timestamp>updated_at: SingularPtrField<Timestamp>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl GetRoutingProfileResponse[src]

pub fn new() -> GetRoutingProfileResponse[src]

pub fn get_routing_profile(&self) -> &RoutingProfile[src]

pub fn clear_routing_profile(&mut self)[src]

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

pub fn set_routing_profile(&mut self, v: RoutingProfile)[src]

pub fn mut_routing_profile(&mut self) -> &mut RoutingProfile[src]

pub fn take_routing_profile(&mut self) -> RoutingProfile[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 GetRoutingProfileResponse[src]

impl Clone for GetRoutingProfileResponse[src]

impl Debug for GetRoutingProfileResponse[src]

impl Default for GetRoutingProfileResponse[src]

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

impl Message for GetRoutingProfileResponse[src]

impl PartialEq<GetRoutingProfileResponse> for GetRoutingProfileResponse[src]

impl ProtobufValue for GetRoutingProfileResponse[src]

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