Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

thread '<unnamed>' panicked at 'called Result::unwrap() on an Err value: Error("EOF while parsing a value", line: 1, column: 0)' #33

Closed
kematy opened this issue Jun 22, 2020 · 2 comments

Comments

@kematy
Copy link

kematy commented Jun 22, 2020

thread '' panicked at 'called Result::unwrap() on an Err value: Error("EOF while parsing a value", line: 1, column: 0)', src\lib.rs:124:23

line 124:
let json_obj: Value=serde_json::from_str(s.as_str()).unwrap();

@MathiasKoch
Copy link
Collaborator

@kematy That is intended behaviour?

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()

@MathiasKoch
Copy link
Collaborator

Closing this with reference to above comment about it being a user error.

Feel free to re-open if this is still an issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants