MCPcopy Create free account
hub / github.com/chirpstack/chirpstack / get_device_queue_item

Method get_device_queue_item

chirpstack/src/downlink/tx_ack.rs:242–251  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

240 }
241
242 async fn get_device_queue_item(&mut self) -> Result<()> {
243 trace!("Getting device queue-item");
244 self.device_queue_item = Some(
245 device_queue::get_item(&Uuid::from_slice(
246 &self.downlink_frame.as_ref().unwrap().device_queue_item_id,
247 )?)
248 .await?,
249 );
250 Ok(())
251 }
252
253 async fn delete_device_queue_item(&self) -> Result<()> {
254 trace!("Deleting device queue-item");

Callers 2

_handleMethod · 0.80
_handle_relayedMethod · 0.80

Calls 3

get_itemFunction · 0.85
unwrapMethod · 0.80
as_refMethod · 0.80

Tested by

no test coverage detected