In regular serde, you'd derive the Deserialize trait on a struct like: ``` #[derive(Deserialize)] struct Response { pub data: Vec, } ``` But, no Vec in no_std...