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

pub struct MulticastQueueItem {
    pub multicast_group_id: String,
    pub f_cnt: u32,
    pub f_port: u32,
    pub data: Vec<u8>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

multicast_group_id: Stringf_cnt: u32f_port: u32data: Vec<u8>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl MulticastQueueItem[src]

pub fn new() -> MulticastQueueItem[src]

pub fn get_multicast_group_id(&self) -> &str[src]

pub fn clear_multicast_group_id(&mut self)[src]

pub fn set_multicast_group_id(&mut self, v: String)[src]

pub fn mut_multicast_group_id(&mut self) -> &mut String[src]

pub fn take_multicast_group_id(&mut self) -> String[src]

pub fn get_f_cnt(&self) -> u32[src]

pub fn clear_f_cnt(&mut self)[src]

pub fn set_f_cnt(&mut self, v: u32)[src]

pub fn get_f_port(&self) -> u32[src]

pub fn clear_f_port(&mut self)[src]

pub fn set_f_port(&mut self, v: u32)[src]

pub fn get_data(&self) -> &[u8][src]

pub fn clear_data(&mut self)[src]

pub fn set_data(&mut self, v: Vec<u8>)[src]

pub fn mut_data(&mut self) -> &mut Vec<u8>[src]

pub fn take_data(&mut self) -> Vec<u8>[src]

Trait Implementations

impl Clear for MulticastQueueItem[src]

impl Clone for MulticastQueueItem[src]

impl Debug for MulticastQueueItem[src]

impl Default for MulticastQueueItem[src]

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

impl Message for MulticastQueueItem[src]

impl PartialEq<MulticastQueueItem> for MulticastQueueItem[src]

impl ProtobufValue for MulticastQueueItem[src]

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