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

pub struct ServiceProfile {
Show fields pub id: String, pub name: String, pub organization_id: i64, pub network_server_id: i64, pub ul_rate: u32, pub ul_bucket_size: u32, pub ul_rate_policy: i32, pub dl_rate: u32, pub dl_bucket_size: u32, pub dl_rate_policy: i32, pub add_gw_metadata: bool, pub dev_status_req_freq: u32, pub report_dev_status_battery: bool, pub report_dev_status_margin: bool, pub dr_min: u32, pub dr_max: u32, pub channel_mask: Vec<u8>, pub pr_allowed: bool, pub hr_allowed: bool, pub ra_allowed: bool, pub nwk_geo_loc: bool, pub target_per: u32, pub min_gw_diversity: u32, pub gws_private: bool,
}

Fields

id: String

Service-profile ID (UUID string). This will be automatically set on create.

name: String

Service-profile name.

organization_id: i64

Organization ID to which the service-profile is assigned.

network_server_id: i64

Network-server ID on which the service-profile is provisioned.

ul_rate: u32

Token bucket filling rate, including ACKs (packet/h).

ul_bucket_size: u32

Token bucket burst size.

ul_rate_policy: i32

Drop or mark when exceeding ULRate.

dl_rate: u32

Token bucket filling rate, including ACKs (packet/h).

dl_bucket_size: u32

Token bucket burst size.

dl_rate_policy: i32

Drop or mark when exceeding DLRate.

add_gw_metadata: bool

GW metadata (RSSI, SNR, GW geoloc., etc.) are added to the packet sent to AS.

dev_status_req_freq: u32

Frequency to initiate an End-Device status request (request/day).

report_dev_status_battery: bool

Report End-Device battery level to AS.

report_dev_status_margin: bool

Report End-Device margin to AS.

dr_min: u32

Minimum allowed data rate. Used for ADR.

dr_max: u32

Maximum allowed data rate. Used for ADR.

channel_mask: Vec<u8>

Channel mask. sNS does not have to obey (i.e., informative).

pr_allowed: bool

Passive Roaming allowed.

hr_allowed: bool

Handover Roaming allowed.

ra_allowed: bool

Roaming Activation allowed.

nwk_geo_loc: bool

Enable network geolocation service.

target_per: u32

Target Packet Error Rate.

min_gw_diversity: u32

Minimum number of receiving GWs (informative).

gws_private: bool

Gateways under this service-profile are private. This means that these gateways can only be used by devices under the same service-profile.

Implementations

impl ServiceProfile[src]

pub fn ul_rate_policy(&self) -> RatePolicy[src]

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

pub fn set_ul_rate_policy(&mut self, value: RatePolicy)[src]

Sets ul_rate_policy to the provided enum value.

pub fn dl_rate_policy(&self) -> RatePolicy[src]

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

pub fn set_dl_rate_policy(&mut self, value: RatePolicy)[src]

Sets dl_rate_policy to the provided enum value.

Trait Implementations

impl Clone for ServiceProfile[src]

fn clone(&self) -> ServiceProfile[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ServiceProfile[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for ServiceProfile[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Message for ServiceProfile[src]

fn encode_raw<B>(&self, buf: &mut B) where
    B: BufMut
[src]

fn merge_field<B>(
    &mut self,
    tag: u32,
    wire_type: WireType,
    buf: &mut B,
    ctx: DecodeContext
) -> Result<(), DecodeError> where
    B: Buf
[src]

fn encoded_len(&self) -> usize[src]

Returns the encoded length of the message without a length delimiter.

fn clear(&mut self)[src]

Clears the message, resetting all fields to their default.

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut
[src]

Encodes the message to a buffer. Read more

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut
[src]

Encodes the message with a length-delimiter to a buffer. Read more

fn decode<B>(buf: B) -> Result<Self, DecodeError> where
    Self: Default,
    B: Buf
[src]

Decodes an instance of the message from a buffer. Read more

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
    Self: Default,
    B: Buf
[src]

Decodes a length-delimited instance of the message from the buffer.

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: Buf
[src]

Decodes an instance of the message from a buffer, and merges it into self. Read more

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: Buf
[src]

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

impl PartialEq<ServiceProfile> for ServiceProfile[src]

fn eq(&self, other: &ServiceProfile) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &ServiceProfile) -> bool[src]

This method tests for !=.

impl StructuralPartialEq for ServiceProfile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> IntoRequest<T> for T[src]

pub fn into_request(self) -> Request<T>[src]

Wrap the input message T in a tonic::Request

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V

impl<T> WithSubscriber for T[src]

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
    S: Into<Dispatch>, 
[src]

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

fn with_current_subscriber(self) -> WithDispatch<Self>[src]

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more