[][src]Struct chirpstack_api::gw::GatewayCommandExecRequest

pub struct GatewayCommandExecRequest {
    pub gateway_id: Vec<u8>,
    pub command: String,
    pub exec_id: Vec<u8>,
    pub stdin: Vec<u8>,
    pub environment: HashMap<String, String>,
}

Fields

gateway_id: Vec<u8>

Gateway ID.

command: String

Command to execute. This command must be pre-configured in the LoRa Gateway Bridge configuration.

exec_id: Vec<u8>

Execution request ID (UUID). The same token will be returned when the execution of the command has completed.

stdin: Vec<u8>

Standard input.

environment: HashMap<String, String>

Environment variables.

Trait Implementations

impl Clone for GatewayCommandExecRequest[src]

impl Debug for GatewayCommandExecRequest[src]

impl Default for GatewayCommandExecRequest[src]

impl Message for GatewayCommandExecRequest[src]

impl PartialEq<GatewayCommandExecRequest> for GatewayCommandExecRequest[src]

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