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

mention serde_json::from_value in the doc #797

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/lib.rs
Expand Up @@ -163,6 +163,10 @@
//! error messages if the layout does not conform to what a `Person` is expected
//! to look like.
//!
//! You can also use [`from_slice`][from_slice] and [`from_reader`][from_reader]
//! in this case as well, with the addition of [`from_value`][from_value] to
//! convert from an existing `serde_json::Value`.
//!
//! Any type that implements Serde's `Deserialize` trait can be deserialized
//! this way. This includes built-in Rust standard library types like `Vec<T>`
//! and `HashMap<K, V>`, as well as any structs or enums annotated with
Expand Down