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
There are a number of issues here, most important one being that you are using serde_json, rather than serde_json_core (different crate, https://github.com/serde-rs/json)
You are calling unwrap() on an error type, causing a panic.
The reason it returns an error, seems to be that you are attempting to parse invalid JSON, though this is just a guess without knowing the contents of s.as_str()
thread '' panicked at 'called
Result::unwrap()
on anErr
value: Error("EOF while parsing a value", line: 1, column: 0)', src\lib.rs:124:23line 124:
let json_obj: Value=serde_json::from_str(s.as_str()).unwrap();
The text was updated successfully, but these errors were encountered: