mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-07-16 21:15:46 +00:00
Merge pull request 2284 from benediktwerner/patch-1
This commit is contained in:
+4
-4
@@ -862,10 +862,10 @@ where
|
|||||||
/// The `Deserializer` trait supports two entry point styles which enables
|
/// The `Deserializer` trait supports two entry point styles which enables
|
||||||
/// different kinds of deserialization.
|
/// different kinds of deserialization.
|
||||||
///
|
///
|
||||||
/// 1. The `deserialize` method. Self-describing data formats like JSON are able
|
/// 1. The `deserialize_any` method. Self-describing data formats like JSON are
|
||||||
/// to look at the serialized data and tell what it represents. For example
|
/// able to look at the serialized data and tell what it represents. For
|
||||||
/// the JSON deserializer may see an opening curly brace (`{`) and know that
|
/// example the JSON deserializer may see an opening curly brace (`{`) and
|
||||||
/// it is seeing a map. If the data format supports
|
/// know that it is seeing a map. If the data format supports
|
||||||
/// `Deserializer::deserialize_any`, it will drive the Visitor using whatever
|
/// `Deserializer::deserialize_any`, it will drive the Visitor using whatever
|
||||||
/// type it sees in the input. JSON uses this approach when deserializing
|
/// type it sees in the input. JSON uses this approach when deserializing
|
||||||
/// `serde_json::Value` which is an enum that can represent any JSON
|
/// `serde_json::Value` which is an enum that can represent any JSON
|
||||||
|
|||||||
Reference in New Issue
Block a user