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

pub struct Organization {
    pub id: i64,
    pub name: String,
    pub display_name: String,
    pub can_have_gateways: bool,
    pub max_gateway_count: u32,
    pub max_device_count: u32,
}

Fields

id: i64

Organization ID.

name: String

Organization name.

display_name: String

Organization display name.

can_have_gateways: bool

Can the organization create and “own” Gateways?

max_gateway_count: u32

Max. gateway count for organization. When set to 0, the organization can have unlimited gateways.

max_device_count: u32

Max. device count for organization. When set to 0, the organization can have unlimited devices.

Trait Implementations

impl Clone for Organization[src]

impl Debug for Organization[src]

impl Default for Organization[src]

impl Message for Organization[src]

impl PartialEq<Organization> for Organization[src]

impl StructuralPartialEq for Organization[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]