Struct chirpstack_api::fuota::Deployment [−][src]
pub struct Deployment {Show fields
pub application_id: i64,
pub devices: Vec<DeploymentDevice>,
pub multicast_group_type: i32,
pub multicast_dr: u32,
pub multicast_ping_slot_period: u32,
pub multicast_frequency: u32,
pub multicast_group_id: u32,
pub multicast_timeout: u32,
pub unicast_timeout: Option<Duration>,
pub unicast_attempt_count: u32,
pub fragmentation_fragment_size: u32,
pub payload: Vec<u8>,
pub fragmentation_redundancy: u32,
pub fragmentation_session_index: u32,
pub fragmentation_matrix: u32,
pub fragmentation_block_ack_delay: u32,
pub fragmentation_descriptor: Vec<u8>,
pub request_fragmentation_session_status: i32,
}Fields
application_id: i64Application ID.
devices: Vec<DeploymentDevice>Devices to include in this deployment.
multicast_group_type: i32Multicast-group type.
multicast_dr: u32Multicast data-rate.
multicast_ping_slot_period: u32Multicast ping-slot period (Class-B only).
multicast_frequency: u32Multicast frequency (Hz).
multicast_group_id: u32Multicast group ID.
multicast_timeout: u32Multicast timeout. This defines the timeout of the multicast-session. Please refer to the Remote Multicast Setup specification as this field has a different meaning for Class-B and Class-C groups.
unicast_timeout: Option<Duration>Unicast timeout. Set this to the value in which you at least expect an uplink frame from the device. The FUOTA server will wait for the given time before attempting a retry or continuing with the next step.
unicast_attempt_count: u32Unicast attempt count. The number of attempts before considering an unicast command to be failed.
fragmentation_fragment_size: u32FragmentationFragmentSize. This defines the size of each payload fragment. Please refer to the Regional Parameters specification for the maximum payload sizes per data-rate and region.
payload: Vec<u8>Payload.
fragmentation_redundancy: u32Fragmentation redundancy. The number represents the additional redundant frames to send.
fragmentation_session_index: u32Fragmentation session index.
fragmentation_matrix: u32Fragmentation matrix.
fragmentation_block_ack_delay: u32Block ack delay.
fragmentation_descriptor: Vec<u8>Descriptor (4 bytes).
request_fragmentation_session_status: i32Request fragmentation session status.
Implementations
Returns the enum value of multicast_group_type, or the default if the field is set to an invalid enum value.
Sets multicast_group_type to the provided enum value.
Returns the enum value of request_fragmentation_session_status, or the default if the field is set to an invalid enum value.
pub fn set_request_fragmentation_session_status(
&mut self,
value: RequestFragmentationSessionStatus
)[src]
pub fn set_request_fragmentation_session_status(
&mut self,
value: RequestFragmentationSessionStatus
)[src]Sets request_fragmentation_session_status to the provided enum value.
Trait Implementations
fn merge_field<B>(
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf, [src]Returns the encoded length of the message without a length delimiter.
Encodes the message to a buffer. Read more
Encodes the message with a length-delimiter to a buffer. Read more
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]
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.
Decodes an instance of the message from a buffer, and merges it into self. Read more
Decodes a length-delimited instance of the message from buffer, and
merges it into self. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for Deploymentimpl Send for Deploymentimpl Sync for Deploymentimpl Unpin for Deploymentimpl UnwindSafe for DeploymentBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
Wrap the input message T in a tonic::Request
pub fn vzip(self) -> VAttaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more