You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use serde::{Serialize,Deserialize};#[derive(Debug,Deserialize)]structReading(Option<i32>,Option<i32>,Option<i32>,i32,Option<f32>,i32,f32,f64,Option<i32>);fnmain(){let data = "[,,,30,,40,5.5,89.9,]";let res:Reading = serde_json::from_str(data).unwrap();println!("{:?}", res);}
The following is test code;
It will show
But it should show :
The text was updated successfully, but these errors were encountered: