Closed c-h-johnson closed 1 year ago
The following now produces the correct output:
#[derive(Clone, AtatCmd)] #[at_cmd("+CMD", NoResponse)] pub struct Outer { #[at_arg(position = 0)] pub inner: Inner, } #[derive(Clone, Serialize)] pub struct Inner { s: String<32>, }
The following now produces the correct output: