We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Value
The following should fail as the array is of length two but three elements are provided.
let err = Value::Seq(vec![ Value::Number(Number::new(1)), Value::Number(Number::new(2)), Value::Number(Number::new(3)), ]) .into_rust::<[i32; 2]>() .unwrap_err();
However, deserialising succeeds.
The text was updated successfully, but these errors were encountered:
Fix ron-rs#277 and ron-rs#405 with Value::Map IntoIter and extran…
Value::Map
IntoIter
bee1974
…eous item check for `Value::Seq`
Value::Seq
Fix #277 and #405 with Value::Map IntoIter and extraneous item ch…
21833a8
…eck for `Value::Seq` (#406)
1ad4db5
…eous item check for `Value::Seq` (ron-rs#406)
juntyr
Successfully merging a pull request may close this issue.
The following should fail as the array is of length two but three elements are provided.
However, deserialising succeeds.
The text was updated successfully, but these errors were encountered: