ublox_cellular/command/device_lock/
responses.rs

1//! Responses for Device lock Commands
2use super::types::*;
3use atat::atat_derive::AtatResp;
4
5/// 9.1 Enter PIN +CPIN
6#[derive(Clone, Debug, PartialEq, AtatResp)]
7pub struct PinStatus {
8    #[at_arg(position = 0)]
9    pub code: PinStatusCode,
10}