mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-26 01:37:55 +00:00
Compare commits
77 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 43a9f59c18 | |||
| ff70409215 | |||
| 97a98a7031 | |||
| 533fb9cc44 | |||
| 59b99d2d60 | |||
| c796daed7c | |||
| 6e2c385fa5 | |||
| 4eb580790d | |||
| a2c83d754b | |||
| 6f946b20ec | |||
| 2ceabad360 | |||
| a00aee1495 | |||
| 4e31c9984d | |||
| b8772a1e40 | |||
| 42990d8264 | |||
| cf31418555 | |||
| 5db72b8ad9 | |||
| fe8f8bcf7b | |||
| d4d737de8d | |||
| 52f6e96ee8 | |||
| 44fa7b0f6b | |||
| bda561df4e | |||
| 8955420baf | |||
| 21ee256911 | |||
| 4aba6fae78 | |||
| fe06bc2f88 | |||
| 8dfb4cd02f | |||
| d1ade37827 | |||
| 9de49241fb | |||
| b24d50160a | |||
| e46463e69f | |||
| a3157c9572 | |||
| 0d4722680a | |||
| 7ab12597bb | |||
| b86a46c83c | |||
| 187a0a3ec0 | |||
| 111c18dec3 | |||
| 7a2b137912 | |||
| 791b9fbe81 | |||
| 0fdc0257aa | |||
| b6a77c4413 | |||
| 33438850a6 | |||
| fcbb3d3783 | |||
| acc8640c1e | |||
| c083cfd65e | |||
| 4cea81f93f | |||
| 2d36be753a | |||
| 738d29eaa9 | |||
| b536fb67a4 | |||
| b10c23a950 | |||
| 85a5cf7cb1 | |||
| 192f5cd647 | |||
| 7dceee64fe | |||
| 8ad6ae71c6 | |||
| 3ea85a28cf | |||
| 273ecdb786 | |||
| de40eb7306 | |||
| b9c44073ce | |||
| d6e5947ad2 | |||
| 668651ee01 | |||
| fb1cacc10e | |||
| 735e56c26f | |||
| 97de3dccbb | |||
| 690467cbe2 | |||
| 71efd8ffda | |||
| 9bb196ae6e | |||
| ce75418e40 | |||
| 78c7f09e28 | |||
| e7269ac84e | |||
| 34866e20a8 | |||
| 3ae2bee272 | |||
| d0fb958e99 | |||
| b941c63a53 | |||
| cf70c3fb05 | |||
| f249e72162 | |||
| 92e0b62c6b | |||
| 4c29eea790 |
+13
-5
@@ -39,15 +39,23 @@ matrix:
|
|||||||
- cd "${TRAVIS_BUILD_DIR}/serde_test"
|
- cd "${TRAVIS_BUILD_DIR}/serde_test"
|
||||||
- cargo build
|
- cargo build
|
||||||
|
|
||||||
- rust: 1.15.0
|
- rust: 1.19.0
|
||||||
script:
|
|
||||||
- cd "${TRAVIS_BUILD_DIR}/serde_derive"
|
|
||||||
- cargo build
|
|
||||||
|
|
||||||
- rust: 1.20.0
|
- rust: 1.20.0
|
||||||
- rust: 1.21.0
|
- rust: 1.21.0
|
||||||
- rust: 1.25.0
|
- rust: 1.25.0
|
||||||
- rust: 1.26.0
|
- rust: 1.26.0
|
||||||
|
|
||||||
|
# Work around failing to parse manifest because editions are unstable.
|
||||||
|
- rust: 1.27.0
|
||||||
|
before_script: sed -i /test_suite/d Cargo.toml
|
||||||
|
- rust: 1.28.0
|
||||||
|
before_script: sed -i /test_suite/d Cargo.toml
|
||||||
|
|
||||||
|
- rust: 1.31.0
|
||||||
|
script:
|
||||||
|
- cd "${TRAVIS_BUILD_DIR}/serde_derive"
|
||||||
|
- cargo build
|
||||||
|
|
||||||
- rust: 1.34.0
|
- rust: 1.34.0
|
||||||
|
|
||||||
- rust: 1.36.0
|
- rust: 1.36.0
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
# Serde   [![Build Status]][travis] [![Latest Version]][crates.io] [![Rustc Version 1.13+]][rustc]
|
# Serde   [![Build Status]][travis] [![Latest Version]][crates.io] [![serde: rustc 1.13+]][Rust 1.13] [![serde_derive: rustc 1.31+]][Rust 1.31]
|
||||||
|
|
||||||
[Build Status]: https://api.travis-ci.org/serde-rs/serde.svg?branch=master
|
[Build Status]: https://api.travis-ci.org/serde-rs/serde.svg?branch=master
|
||||||
[travis]: https://travis-ci.org/serde-rs/serde
|
[travis]: https://travis-ci.org/serde-rs/serde
|
||||||
[Latest Version]: https://img.shields.io/crates/v/serde.svg
|
[Latest Version]: https://img.shields.io/crates/v/serde.svg
|
||||||
[crates.io]: https://crates.io/crates/serde
|
[crates.io]: https://crates.io/crates/serde
|
||||||
[Rustc Version 1.13+]: https://img.shields.io/badge/rustc-1.13+-lightgray.svg
|
[serde: rustc 1.13+]: https://img.shields.io/badge/serde-rustc_1.13+-lightgray.svg
|
||||||
[rustc]: https://blog.rust-lang.org/2016/11/10/Rust-1.13.html
|
[serde_derive: rustc 1.31+]: https://img.shields.io/badge/serde_derive-rustc_1.31+-lightgray.svg
|
||||||
|
[Rust 1.13]: https://blog.rust-lang.org/2016/11/10/Rust-1.13.html
|
||||||
|
[Rust 1.31]: https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html
|
||||||
|
|
||||||
**Serde is a framework for *ser*ializing and *de*serializing Rust data structures efficiently and generically.**
|
**Serde is a framework for *ser*ializing and *de*serializing Rust data structures efficiently and generically.**
|
||||||
|
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde"
|
name = "serde"
|
||||||
version = "1.0.96" # remember to update html_root_url
|
version = "1.0.103" # remember to update html_root_url and serde_derive dependency
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "A generic serialization/deserialization framework"
|
description = "A generic serialization/deserialization framework"
|
||||||
@@ -18,7 +18,7 @@ travis-ci = { repository = "serde-rs/serde" }
|
|||||||
appveyor = { repository = "serde-rs/serde" }
|
appveyor = { repository = "serde-rs/serde" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde_derive = { version = "1.0", optional = true, path = "../serde_derive" }
|
serde_derive = { version = "=1.0.103", optional = true, path = "../serde_derive" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_derive = { version = "1.0", path = "../serde_derive" }
|
serde_derive = { version = "1.0", path = "../serde_derive" }
|
||||||
|
|||||||
+9
-1
@@ -29,10 +29,12 @@ fn main() {
|
|||||||
println!("cargo:rustc-cfg=core_reverse");
|
println!("cargo:rustc-cfg=core_reverse");
|
||||||
}
|
}
|
||||||
|
|
||||||
// CString::into_boxed_c_str stabilized in Rust 1.20:
|
// CString::into_boxed_c_str and PathBuf::into_boxed_path stabilized in Rust 1.20:
|
||||||
// https://doc.rust-lang.org/std/ffi/struct.CString.html#method.into_boxed_c_str
|
// https://doc.rust-lang.org/std/ffi/struct.CString.html#method.into_boxed_c_str
|
||||||
|
// https://doc.rust-lang.org/std/path/struct.PathBuf.html#method.into_boxed_path
|
||||||
if minor >= 20 {
|
if minor >= 20 {
|
||||||
println!("cargo:rustc-cfg=de_boxed_c_str");
|
println!("cargo:rustc-cfg=de_boxed_c_str");
|
||||||
|
println!("cargo:rustc-cfg=de_boxed_path");
|
||||||
}
|
}
|
||||||
|
|
||||||
// From<Box<T>> for Rc<T> / Arc<T> stabilized in Rust 1.21:
|
// From<Box<T>> for Rc<T> / Arc<T> stabilized in Rust 1.21:
|
||||||
@@ -69,7 +71,13 @@ fn main() {
|
|||||||
println!("cargo:rustc-cfg=num_nonzero");
|
println!("cargo:rustc-cfg=num_nonzero");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TryFrom, Atomic types, and non-zero signed integers stabilized in Rust 1.34:
|
||||||
|
// https://blog.rust-lang.org/2019/04/11/Rust-1.34.0.html#tryfrom-and-tryinto
|
||||||
|
// https://blog.rust-lang.org/2019/04/11/Rust-1.34.0.html#library-stabilizations
|
||||||
if minor >= 34 {
|
if minor >= 34 {
|
||||||
|
println!("cargo:rustc-cfg=core_try_from");
|
||||||
|
println!("cargo:rustc-cfg=num_nonzero_signed");
|
||||||
|
|
||||||
// Whitelist of archs that support std::sync::atomic module. Ideally we
|
// Whitelist of archs that support std::sync::atomic module. Ideally we
|
||||||
// would use #[cfg(target_has_atomic = "...")] but it is not stable yet.
|
// would use #[cfg(target_has_atomic = "...")] but it is not stable yet.
|
||||||
// Instead this is based on rustc's src/librustc_target/spec/*.rs.
|
// Instead this is based on rustc's src/librustc_target/spec/*.rs.
|
||||||
|
|||||||
+35
-1
@@ -1580,6 +1580,24 @@ impl<'de> Visitor<'de> for PathBufVisitor {
|
|||||||
{
|
{
|
||||||
Ok(From::from(v))
|
Ok(From::from(v))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn visit_bytes<E>(self, v: &[u8]) -> Result<Self::Value, E>
|
||||||
|
where
|
||||||
|
E: Error,
|
||||||
|
{
|
||||||
|
str::from_utf8(v)
|
||||||
|
.map(From::from)
|
||||||
|
.map_err(|_| Error::invalid_value(Unexpected::Bytes(v), &self))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn visit_byte_buf<E>(self, v: Vec<u8>) -> Result<Self::Value, E>
|
||||||
|
where
|
||||||
|
E: Error,
|
||||||
|
{
|
||||||
|
String::from_utf8(v)
|
||||||
|
.map(From::from)
|
||||||
|
.map_err(|e| Error::invalid_value(Unexpected::Bytes(&e.into_bytes()), &self))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
@@ -1592,6 +1610,9 @@ impl<'de> Deserialize<'de> for PathBuf {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(all(feature = "std", de_boxed_path))]
|
||||||
|
forwarded_impl!((), Box<Path>, PathBuf::into_boxed_path);
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// If this were outside of the serde crate, it would just use:
|
// If this were outside of the serde crate, it would just use:
|
||||||
@@ -2404,7 +2425,6 @@ macro_rules! nonzero_integers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
nonzero_integers! {
|
nonzero_integers! {
|
||||||
// Not including signed NonZeroI* since they might be removed
|
|
||||||
NonZeroU8,
|
NonZeroU8,
|
||||||
NonZeroU16,
|
NonZeroU16,
|
||||||
NonZeroU32,
|
NonZeroU32,
|
||||||
@@ -2412,12 +2432,26 @@ nonzero_integers! {
|
|||||||
NonZeroUsize,
|
NonZeroUsize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(num_nonzero_signed)]
|
||||||
|
nonzero_integers! {
|
||||||
|
NonZeroI8,
|
||||||
|
NonZeroI16,
|
||||||
|
NonZeroI32,
|
||||||
|
NonZeroI64,
|
||||||
|
NonZeroIsize,
|
||||||
|
}
|
||||||
|
|
||||||
// Currently 128-bit integers do not work on Emscripten targets so we need an
|
// Currently 128-bit integers do not work on Emscripten targets so we need an
|
||||||
// additional `#[cfg]`
|
// additional `#[cfg]`
|
||||||
serde_if_integer128! {
|
serde_if_integer128! {
|
||||||
nonzero_integers! {
|
nonzero_integers! {
|
||||||
NonZeroU128,
|
NonZeroU128,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(num_nonzero_signed)]
|
||||||
|
nonzero_integers! {
|
||||||
|
NonZeroI128,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
+9
-2
@@ -125,6 +125,13 @@ mod utf8;
|
|||||||
|
|
||||||
pub use self::ignored_any::IgnoredAny;
|
pub use self::ignored_any::IgnoredAny;
|
||||||
|
|
||||||
|
#[cfg(feature = "std")]
|
||||||
|
#[doc(no_inline)]
|
||||||
|
pub use std::error::Error as StdError;
|
||||||
|
#[cfg(not(feature = "std"))]
|
||||||
|
#[doc(no_inline)]
|
||||||
|
pub use std_error::Error as StdError;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
macro_rules! declare_error_trait {
|
macro_rules! declare_error_trait {
|
||||||
@@ -288,7 +295,7 @@ macro_rules! declare_error_trait {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
declare_error_trait!(Error: Sized + error::Error);
|
declare_error_trait!(Error: Sized + StdError);
|
||||||
|
|
||||||
#[cfg(not(feature = "std"))]
|
#[cfg(not(feature = "std"))]
|
||||||
declare_error_trait!(Error: Sized + Debug + Display);
|
declare_error_trait!(Error: Sized + Debug + Display);
|
||||||
@@ -787,7 +794,7 @@ where
|
|||||||
///
|
///
|
||||||
/// The role of this trait is to define the deserialization half of the [Serde
|
/// The role of this trait is to define the deserialization half of the [Serde
|
||||||
/// data model], which is a way to categorize every Rust data type into one of
|
/// data model], which is a way to categorize every Rust data type into one of
|
||||||
/// 29 possible types. Each method of the `Serializer` trait corresponds to one
|
/// 29 possible types. Each method of the `Deserializer` trait corresponds to one
|
||||||
/// of the types of the data model.
|
/// of the types of the data model.
|
||||||
///
|
///
|
||||||
/// Implementations of `Deserialize` map themselves into this data model by
|
/// Implementations of `Deserialize` map themselves into this data model by
|
||||||
|
|||||||
@@ -11,6 +11,9 @@ pub use self::string::from_utf8_lossy;
|
|||||||
#[cfg(any(feature = "alloc", feature = "std"))]
|
#[cfg(any(feature = "alloc", feature = "std"))]
|
||||||
pub use lib::{ToString, Vec};
|
pub use lib::{ToString, Vec};
|
||||||
|
|
||||||
|
#[cfg(core_try_from)]
|
||||||
|
pub use lib::convert::TryFrom;
|
||||||
|
|
||||||
mod string {
|
mod string {
|
||||||
use lib::*;
|
use lib::*;
|
||||||
|
|
||||||
|
|||||||
+13
-3
@@ -47,6 +47,7 @@
|
|||||||
//! - [Avro], a binary format used within Apache Hadoop, with support for schema
|
//! - [Avro], a binary format used within Apache Hadoop, with support for schema
|
||||||
//! definition.
|
//! definition.
|
||||||
//! - [JSON5], A superset of JSON including some productions from ES5.
|
//! - [JSON5], A superset of JSON including some productions from ES5.
|
||||||
|
//! - [Postcard], a no\_std and embedded-systems friendly compact binary format.
|
||||||
//! - [URL], the x-www-form-urlencoded format.
|
//! - [URL], the x-www-form-urlencoded format.
|
||||||
//! - [Envy], a way to deserialize environment variables into Rust structs.
|
//! - [Envy], a way to deserialize environment variables into Rust structs.
|
||||||
//! *(deserialization only)*
|
//! *(deserialization only)*
|
||||||
@@ -64,6 +65,7 @@
|
|||||||
//! [BSON]: https://github.com/zonyitoo/bson-rs
|
//! [BSON]: https://github.com/zonyitoo/bson-rs
|
||||||
//! [Avro]: https://github.com/flavray/avro-rs
|
//! [Avro]: https://github.com/flavray/avro-rs
|
||||||
//! [JSON5]: https://github.com/callum-oakley/json5-rs
|
//! [JSON5]: https://github.com/callum-oakley/json5-rs
|
||||||
|
//! [Postcard]: https://github.com/jamesmunns/postcard
|
||||||
//! [URL]: https://github.com/nox/serde_urlencoded
|
//! [URL]: https://github.com/nox/serde_urlencoded
|
||||||
//! [Envy]: https://github.com/softprops/envy
|
//! [Envy]: https://github.com/softprops/envy
|
||||||
//! [Envy Store]: https://github.com/softprops/envy-store
|
//! [Envy Store]: https://github.com/softprops/envy-store
|
||||||
@@ -73,15 +75,15 @@
|
|||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// Serde types in rustdoc of other crates get linked to here.
|
// Serde types in rustdoc of other crates get linked to here.
|
||||||
#![doc(html_root_url = "https://docs.rs/serde/1.0.96")]
|
#![doc(html_root_url = "https://docs.rs/serde/1.0.103")]
|
||||||
// Support using Serde without the standard library!
|
// Support using Serde without the standard library!
|
||||||
#![cfg_attr(not(feature = "std"), no_std)]
|
#![cfg_attr(not(feature = "std"), no_std)]
|
||||||
// Unstable functionality only if the user asks for it. For tracking and
|
// Unstable functionality only if the user asks for it. For tracking and
|
||||||
// discussion of these features please refer to this issue:
|
// discussion of these features please refer to this issue:
|
||||||
//
|
//
|
||||||
// https://github.com/serde-rs/serde/issues/812
|
// https://github.com/serde-rs/serde/issues/812
|
||||||
#![cfg_attr(feature = "unstable", feature(specialization, never_type))]
|
#![cfg_attr(feature = "unstable", feature(specialization))]
|
||||||
#![allow(unknown_lints, bare_trait_objects)]
|
#![allow(unknown_lints, bare_trait_objects, deprecated)]
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
||||||
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
|
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
|
||||||
// Ignored clippy and clippy_pedantic lints
|
// Ignored clippy and clippy_pedantic lints
|
||||||
@@ -107,8 +109,13 @@
|
|||||||
// not practical
|
// not practical
|
||||||
needless_pass_by_value,
|
needless_pass_by_value,
|
||||||
similar_names,
|
similar_names,
|
||||||
|
too_many_lines,
|
||||||
// preference
|
// preference
|
||||||
doc_markdown,
|
doc_markdown,
|
||||||
|
// false positive
|
||||||
|
needless_doctest_main,
|
||||||
|
// noisy
|
||||||
|
must_use_candidate,
|
||||||
)
|
)
|
||||||
)]
|
)]
|
||||||
// Rustc lints.
|
// Rustc lints.
|
||||||
@@ -248,6 +255,9 @@ pub mod export;
|
|||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
pub mod private;
|
pub mod private;
|
||||||
|
|
||||||
|
#[cfg(not(feature = "std"))]
|
||||||
|
mod std_error;
|
||||||
|
|
||||||
// Re-export #[derive(Serialize, Deserialize)].
|
// Re-export #[derive(Serialize, Deserialize)].
|
||||||
//
|
//
|
||||||
// The reason re-exporting is not enabled by default is that disabling it would
|
// The reason re-exporting is not enabled by default is that disabling it would
|
||||||
|
|||||||
@@ -2510,6 +2510,13 @@ mod content {
|
|||||||
{
|
{
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn visit_none<E>(self) -> Result<(), E>
|
||||||
|
where
|
||||||
|
E: de::Error,
|
||||||
|
{
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+22
-22
@@ -1032,7 +1032,7 @@ impl<'a, M> FlatMapSerializer<'a, M>
|
|||||||
where
|
where
|
||||||
M: SerializeMap + 'a,
|
M: SerializeMap + 'a,
|
||||||
{
|
{
|
||||||
fn bad_type(self, what: Unsupported) -> M::Error {
|
fn bad_type(what: Unsupported) -> M::Error {
|
||||||
ser::Error::custom(format_args!(
|
ser::Error::custom(format_args!(
|
||||||
"can only flatten structs and maps (got {})",
|
"can only flatten structs and maps (got {})",
|
||||||
what
|
what
|
||||||
@@ -1057,59 +1057,59 @@ where
|
|||||||
type SerializeStructVariant = FlatMapSerializeStructVariantAsMapValue<'a, M>;
|
type SerializeStructVariant = FlatMapSerializeStructVariantAsMapValue<'a, M>;
|
||||||
|
|
||||||
fn serialize_bool(self, _: bool) -> Result<Self::Ok, Self::Error> {
|
fn serialize_bool(self, _: bool) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Boolean))
|
Err(Self::bad_type(Unsupported::Boolean))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_i8(self, _: i8) -> Result<Self::Ok, Self::Error> {
|
fn serialize_i8(self, _: i8) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_i16(self, _: i16) -> Result<Self::Ok, Self::Error> {
|
fn serialize_i16(self, _: i16) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_i32(self, _: i32) -> Result<Self::Ok, Self::Error> {
|
fn serialize_i32(self, _: i32) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_i64(self, _: i64) -> Result<Self::Ok, Self::Error> {
|
fn serialize_i64(self, _: i64) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_u8(self, _: u8) -> Result<Self::Ok, Self::Error> {
|
fn serialize_u8(self, _: u8) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_u16(self, _: u16) -> Result<Self::Ok, Self::Error> {
|
fn serialize_u16(self, _: u16) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_u32(self, _: u32) -> Result<Self::Ok, Self::Error> {
|
fn serialize_u32(self, _: u32) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_u64(self, _: u64) -> Result<Self::Ok, Self::Error> {
|
fn serialize_u64(self, _: u64) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Integer))
|
Err(Self::bad_type(Unsupported::Integer))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_f32(self, _: f32) -> Result<Self::Ok, Self::Error> {
|
fn serialize_f32(self, _: f32) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Float))
|
Err(Self::bad_type(Unsupported::Float))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_f64(self, _: f64) -> Result<Self::Ok, Self::Error> {
|
fn serialize_f64(self, _: f64) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Float))
|
Err(Self::bad_type(Unsupported::Float))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error> {
|
fn serialize_char(self, _: char) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Char))
|
Err(Self::bad_type(Unsupported::Char))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_str(self, _: &str) -> Result<Self::Ok, Self::Error> {
|
fn serialize_str(self, _: &str) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::String))
|
Err(Self::bad_type(Unsupported::String))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_bytes(self, _: &[u8]) -> Result<Self::Ok, Self::Error> {
|
fn serialize_bytes(self, _: &[u8]) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::ByteArray))
|
Err(Self::bad_type(Unsupported::ByteArray))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_none(self) -> Result<Self::Ok, Self::Error> {
|
fn serialize_none(self) -> Result<Self::Ok, Self::Error> {
|
||||||
@@ -1124,11 +1124,11 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_unit(self) -> Result<Self::Ok, Self::Error> {
|
fn serialize_unit(self) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Unit))
|
Err(Self::bad_type(Unsupported::Unit))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_unit_struct(self, _: &'static str) -> Result<Self::Ok, Self::Error> {
|
fn serialize_unit_struct(self, _: &'static str) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::UnitStruct))
|
Err(Self::bad_type(Unsupported::UnitStruct))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_unit_variant(
|
fn serialize_unit_variant(
|
||||||
@@ -1137,7 +1137,7 @@ where
|
|||||||
_: u32,
|
_: u32,
|
||||||
_: &'static str,
|
_: &'static str,
|
||||||
) -> Result<Self::Ok, Self::Error> {
|
) -> Result<Self::Ok, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Enum))
|
Err(Self::bad_type(Unsupported::Enum))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_newtype_struct<T: ?Sized>(
|
fn serialize_newtype_struct<T: ?Sized>(
|
||||||
@@ -1166,11 +1166,11 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_seq(self, _: Option<usize>) -> Result<Self::SerializeSeq, Self::Error> {
|
fn serialize_seq(self, _: Option<usize>) -> Result<Self::SerializeSeq, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Sequence))
|
Err(Self::bad_type(Unsupported::Sequence))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_tuple(self, _: usize) -> Result<Self::SerializeTuple, Self::Error> {
|
fn serialize_tuple(self, _: usize) -> Result<Self::SerializeTuple, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Tuple))
|
Err(Self::bad_type(Unsupported::Tuple))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_tuple_struct(
|
fn serialize_tuple_struct(
|
||||||
@@ -1178,7 +1178,7 @@ where
|
|||||||
_: &'static str,
|
_: &'static str,
|
||||||
_: usize,
|
_: usize,
|
||||||
) -> Result<Self::SerializeTupleStruct, Self::Error> {
|
) -> Result<Self::SerializeTupleStruct, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::TupleStruct))
|
Err(Self::bad_type(Unsupported::TupleStruct))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_tuple_variant(
|
fn serialize_tuple_variant(
|
||||||
@@ -1188,7 +1188,7 @@ where
|
|||||||
_: &'static str,
|
_: &'static str,
|
||||||
_: usize,
|
_: usize,
|
||||||
) -> Result<Self::SerializeTupleVariant, Self::Error> {
|
) -> Result<Self::SerializeTupleVariant, Self::Error> {
|
||||||
Err(self.bad_type(Unsupported::Enum))
|
Err(Self::bad_type(Unsupported::Enum))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_map(self, _: Option<usize>) -> Result<Self::SerializeMap, Self::Error> {
|
fn serialize_map(self, _: Option<usize>) -> Result<Self::SerializeMap, Self::Error> {
|
||||||
|
|||||||
+14
-1
@@ -481,7 +481,6 @@ macro_rules! nonzero_integers {
|
|||||||
}
|
}
|
||||||
|
|
||||||
nonzero_integers! {
|
nonzero_integers! {
|
||||||
// Not including signed NonZeroI* since they might be removed
|
|
||||||
NonZeroU8,
|
NonZeroU8,
|
||||||
NonZeroU16,
|
NonZeroU16,
|
||||||
NonZeroU32,
|
NonZeroU32,
|
||||||
@@ -489,12 +488,26 @@ nonzero_integers! {
|
|||||||
NonZeroUsize,
|
NonZeroUsize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(num_nonzero_signed)]
|
||||||
|
nonzero_integers! {
|
||||||
|
NonZeroI8,
|
||||||
|
NonZeroI16,
|
||||||
|
NonZeroI32,
|
||||||
|
NonZeroI64,
|
||||||
|
NonZeroIsize,
|
||||||
|
}
|
||||||
|
|
||||||
// Currently 128-bit integers do not work on Emscripten targets so we need an
|
// Currently 128-bit integers do not work on Emscripten targets so we need an
|
||||||
// additional `#[cfg]`
|
// additional `#[cfg]`
|
||||||
serde_if_integer128! {
|
serde_if_integer128! {
|
||||||
nonzero_integers! {
|
nonzero_integers! {
|
||||||
NonZeroU128,
|
NonZeroU128,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(num_nonzero_signed)]
|
||||||
|
nonzero_integers! {
|
||||||
|
NonZeroI128,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> Serialize for Cell<T>
|
impl<T> Serialize for Cell<T>
|
||||||
|
|||||||
@@ -114,6 +114,13 @@ mod impossible;
|
|||||||
|
|
||||||
pub use self::impossible::Impossible;
|
pub use self::impossible::Impossible;
|
||||||
|
|
||||||
|
#[cfg(feature = "std")]
|
||||||
|
#[doc(no_inline)]
|
||||||
|
pub use std::error::Error as StdError;
|
||||||
|
#[cfg(not(feature = "std"))]
|
||||||
|
#[doc(no_inline)]
|
||||||
|
pub use std_error::Error as StdError;
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
macro_rules! declare_error_trait {
|
macro_rules! declare_error_trait {
|
||||||
@@ -172,7 +179,7 @@ macro_rules! declare_error_trait {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
declare_error_trait!(Error: Sized + error::Error);
|
declare_error_trait!(Error: Sized + StdError);
|
||||||
|
|
||||||
#[cfg(not(feature = "std"))]
|
#[cfg(not(feature = "std"))]
|
||||||
declare_error_trait!(Error: Sized + Debug + Display);
|
declare_error_trait!(Error: Sized + Debug + Display);
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
use lib::{Debug, Display};
|
||||||
|
|
||||||
|
/// Either a re-export of std::error::Error or a new identical trait, depending
|
||||||
|
/// on whether Serde's "std" feature is enabled.
|
||||||
|
///
|
||||||
|
/// Serde's error traits [`serde::ser::Error`] and [`serde::de::Error`] require
|
||||||
|
/// [`std::error::Error`] as a supertrait, but only when Serde is built with
|
||||||
|
/// "std" enabled. Data formats that don't care about no\_std support should
|
||||||
|
/// generally provide their error types with a `std::error::Error` impl
|
||||||
|
/// directly:
|
||||||
|
///
|
||||||
|
/// ```edition2018
|
||||||
|
/// #[derive(Debug)]
|
||||||
|
/// struct MySerError {...}
|
||||||
|
///
|
||||||
|
/// impl serde::ser::Error for MySerError {...}
|
||||||
|
///
|
||||||
|
/// impl std::fmt::Display for MySerError {...}
|
||||||
|
///
|
||||||
|
/// // We don't support no_std!
|
||||||
|
/// impl std::error::Error for MySerError {}
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// Data formats that *do* support no\_std may either have a "std" feature of
|
||||||
|
/// their own:
|
||||||
|
///
|
||||||
|
/// ```toml
|
||||||
|
/// [features]
|
||||||
|
/// std = ["serde/std"]
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// ```edition2018
|
||||||
|
/// #[cfg(feature = "std")]
|
||||||
|
/// impl std::error::Error for MySerError {}
|
||||||
|
/// ```
|
||||||
|
///
|
||||||
|
/// ... or else provide the std Error impl unconditionally via Serde's
|
||||||
|
/// re-export:
|
||||||
|
///
|
||||||
|
/// ```edition2018
|
||||||
|
/// impl serde::ser::StdError for MySerError {}
|
||||||
|
/// ```
|
||||||
|
pub trait Error: Debug + Display {
|
||||||
|
/// The underlying cause of this error, if any.
|
||||||
|
fn source(&self) -> Option<&(Error + 'static)> {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_derive"
|
name = "serde_derive"
|
||||||
version = "1.0.96" # remember to update html_root_url
|
version = "1.0.103" # remember to update html_root_url
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
|
description = "Macros 1.1 implementation of #[derive(Serialize, Deserialize)]"
|
||||||
@@ -24,9 +24,9 @@ name = "serde_derive"
|
|||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "0.4"
|
proc-macro2 = "1.0"
|
||||||
quote = "0.6.3"
|
quote = "1.0"
|
||||||
syn = { version = "0.15.22", features = ["visit"] }
|
syn = { version = "1.0", features = ["visit"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde = { version = "1.0", path = "../serde" }
|
serde = { version = "1.0", path = "../serde" }
|
||||||
|
|||||||
+16
-16
@@ -17,8 +17,8 @@ pub fn without_defaults(generics: &syn::Generics) -> syn::Generics {
|
|||||||
params: generics
|
params: generics
|
||||||
.params
|
.params
|
||||||
.iter()
|
.iter()
|
||||||
.map(|param| match *param {
|
.map(|param| match param {
|
||||||
syn::GenericParam::Type(ref param) => syn::GenericParam::Type(syn::TypeParam {
|
syn::GenericParam::Type(param) => syn::GenericParam::Type(syn::TypeParam {
|
||||||
eq_token: None,
|
eq_token: None,
|
||||||
default: None,
|
default: None,
|
||||||
..param.clone()
|
..param.clone()
|
||||||
@@ -63,8 +63,8 @@ pub fn with_where_predicates_from_variants(
|
|||||||
generics: &syn::Generics,
|
generics: &syn::Generics,
|
||||||
from_variant: fn(&attr::Variant) -> Option<&[syn::WherePredicate]>,
|
from_variant: fn(&attr::Variant) -> Option<&[syn::WherePredicate]>,
|
||||||
) -> syn::Generics {
|
) -> syn::Generics {
|
||||||
let variants = match cont.data {
|
let variants = match &cont.data {
|
||||||
Data::Enum(ref variants) => variants,
|
Data::Enum(variants) => variants,
|
||||||
Data::Struct(_, _) => {
|
Data::Struct(_, _) => {
|
||||||
return generics.clone();
|
return generics.clone();
|
||||||
}
|
}
|
||||||
@@ -114,8 +114,8 @@ pub fn with_bound(
|
|||||||
}
|
}
|
||||||
impl<'ast> Visit<'ast> for FindTyParams<'ast> {
|
impl<'ast> Visit<'ast> for FindTyParams<'ast> {
|
||||||
fn visit_field(&mut self, field: &'ast syn::Field) {
|
fn visit_field(&mut self, field: &'ast syn::Field) {
|
||||||
if let syn::Type::Path(ref ty) = field.ty {
|
if let syn::Type::Path(ty) = &field.ty {
|
||||||
if let Some(Pair::Punctuated(ref t, _)) = ty.path.segments.first() {
|
if let Some(Pair::Punctuated(t, _)) = ty.path.segments.pairs().next() {
|
||||||
if self.all_type_params.contains(&t.ident) {
|
if self.all_type_params.contains(&t.ident) {
|
||||||
self.associated_type_usage.push(ty);
|
self.associated_type_usage.push(ty);
|
||||||
}
|
}
|
||||||
@@ -126,7 +126,7 @@ pub fn with_bound(
|
|||||||
|
|
||||||
fn visit_path(&mut self, path: &'ast syn::Path) {
|
fn visit_path(&mut self, path: &'ast syn::Path) {
|
||||||
if let Some(seg) = path.segments.last() {
|
if let Some(seg) = path.segments.last() {
|
||||||
if seg.into_value().ident == "PhantomData" {
|
if seg.ident == "PhantomData" {
|
||||||
// Hardcoded exception, because PhantomData<T> implements
|
// Hardcoded exception, because PhantomData<T> implements
|
||||||
// Serialize and Deserialize whether or not T implements it.
|
// Serialize and Deserialize whether or not T implements it.
|
||||||
return;
|
return;
|
||||||
@@ -160,8 +160,8 @@ pub fn with_bound(
|
|||||||
relevant_type_params: HashSet::new(),
|
relevant_type_params: HashSet::new(),
|
||||||
associated_type_usage: Vec::new(),
|
associated_type_usage: Vec::new(),
|
||||||
};
|
};
|
||||||
match cont.data {
|
match &cont.data {
|
||||||
Data::Enum(ref variants) => {
|
Data::Enum(variants) => {
|
||||||
for variant in variants.iter() {
|
for variant in variants.iter() {
|
||||||
let relevant_fields = variant
|
let relevant_fields = variant
|
||||||
.fields
|
.fields
|
||||||
@@ -172,7 +172,7 @@ pub fn with_bound(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Data::Struct(_, ref fields) => {
|
Data::Struct(_, fields) => {
|
||||||
for field in fields.iter().filter(|field| filter(&field.attrs, None)) {
|
for field in fields.iter().filter(|field| filter(&field.attrs, None)) {
|
||||||
visitor.visit_field(field.original);
|
visitor.visit_field(field.original);
|
||||||
}
|
}
|
||||||
@@ -255,11 +255,11 @@ pub fn with_lifetime_bound(generics: &syn::Generics, lifetime: &str) -> syn::Gen
|
|||||||
let params = Some(syn::GenericParam::Lifetime(def))
|
let params = Some(syn::GenericParam::Lifetime(def))
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.chain(generics.params.iter().cloned().map(|mut param| {
|
.chain(generics.params.iter().cloned().map(|mut param| {
|
||||||
match param {
|
match &mut param {
|
||||||
syn::GenericParam::Lifetime(ref mut param) => {
|
syn::GenericParam::Lifetime(param) => {
|
||||||
param.bounds.push(bound.clone());
|
param.bounds.push(bound.clone());
|
||||||
}
|
}
|
||||||
syn::GenericParam::Type(ref mut param) => {
|
syn::GenericParam::Type(param) => {
|
||||||
param
|
param
|
||||||
.bounds
|
.bounds
|
||||||
.push(syn::TypeParamBound::Lifetime(bound.clone()));
|
.push(syn::TypeParamBound::Lifetime(bound.clone()));
|
||||||
@@ -291,14 +291,14 @@ fn type_of_item(cont: &Container) -> syn::Type {
|
|||||||
.generics
|
.generics
|
||||||
.params
|
.params
|
||||||
.iter()
|
.iter()
|
||||||
.map(|param| match *param {
|
.map(|param| match param {
|
||||||
syn::GenericParam::Type(ref param) => {
|
syn::GenericParam::Type(param) => {
|
||||||
syn::GenericArgument::Type(syn::Type::Path(syn::TypePath {
|
syn::GenericArgument::Type(syn::Type::Path(syn::TypePath {
|
||||||
qself: None,
|
qself: None,
|
||||||
path: param.ident.clone().into(),
|
path: param.ident.clone().into(),
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
syn::GenericParam::Lifetime(ref param) => {
|
syn::GenericParam::Lifetime(param) => {
|
||||||
syn::GenericArgument::Lifetime(param.lifetime.clone())
|
syn::GenericArgument::Lifetime(param.lifetime.clone())
|
||||||
}
|
}
|
||||||
syn::GenericParam::Const(_) => {
|
syn::GenericParam::Const(_) => {
|
||||||
|
|||||||
+110
-75
@@ -20,7 +20,7 @@ pub fn expand_derive_deserialize(input: &syn::DeriveInput) -> Result<TokenStream
|
|||||||
None => return Err(ctxt.check().unwrap_err()),
|
None => return Err(ctxt.check().unwrap_err()),
|
||||||
};
|
};
|
||||||
precondition(&ctxt, &cont);
|
precondition(&ctxt, &cont);
|
||||||
try!(ctxt.check());
|
ctxt.check()?;
|
||||||
|
|
||||||
let ident = &cont.ident;
|
let ident = &cont.ident;
|
||||||
let params = Parameters::new(&cont);
|
let params = Parameters::new(&cont);
|
||||||
@@ -75,7 +75,7 @@ fn precondition(cx: &Ctxt, cont: &Container) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn precondition_sized(cx: &Ctxt, cont: &Container) {
|
fn precondition_sized(cx: &Ctxt, cont: &Container) {
|
||||||
if let Data::Struct(_, ref fields) = cont.data {
|
if let Data::Struct(_, fields) = &cont.data {
|
||||||
if let Some(last) = fields.last() {
|
if let Some(last) = fields.last() {
|
||||||
if let syn::Type::Slice(_) = *last.ty {
|
if let syn::Type::Slice(_) = *last.ty {
|
||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
@@ -145,7 +145,7 @@ impl Parameters {
|
|||||||
/// Type name to use in error messages and `&'static str` arguments to
|
/// Type name to use in error messages and `&'static str` arguments to
|
||||||
/// various Deserializer methods.
|
/// various Deserializer methods.
|
||||||
fn type_name(&self) -> String {
|
fn type_name(&self) -> String {
|
||||||
self.this.segments.last().unwrap().value().ident.to_string()
|
self.this.segments.last().unwrap().ident.to_string()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -229,8 +229,8 @@ impl BorrowedLifetimes {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn de_lifetime_def(&self) -> Option<syn::LifetimeDef> {
|
fn de_lifetime_def(&self) -> Option<syn::LifetimeDef> {
|
||||||
match *self {
|
match self {
|
||||||
BorrowedLifetimes::Borrowed(ref bounds) => Some(syn::LifetimeDef {
|
BorrowedLifetimes::Borrowed(bounds) => Some(syn::LifetimeDef {
|
||||||
attrs: Vec::new(),
|
attrs: Vec::new(),
|
||||||
lifetime: syn::Lifetime::new("'de", Span::call_site()),
|
lifetime: syn::Lifetime::new("'de", Span::call_site()),
|
||||||
colon_token: None,
|
colon_token: None,
|
||||||
@@ -269,22 +269,22 @@ fn deserialize_body(cont: &Container, params: &Parameters) -> Fragment {
|
|||||||
deserialize_transparent(cont, params)
|
deserialize_transparent(cont, params)
|
||||||
} else if let Some(type_from) = cont.attrs.type_from() {
|
} else if let Some(type_from) = cont.attrs.type_from() {
|
||||||
deserialize_from(type_from)
|
deserialize_from(type_from)
|
||||||
|
} else if let Some(type_try_from) = cont.attrs.type_try_from() {
|
||||||
|
deserialize_try_from(type_try_from)
|
||||||
} else if let attr::Identifier::No = cont.attrs.identifier() {
|
} else if let attr::Identifier::No = cont.attrs.identifier() {
|
||||||
match cont.data {
|
match &cont.data {
|
||||||
Data::Enum(ref variants) => deserialize_enum(params, variants, &cont.attrs),
|
Data::Enum(variants) => deserialize_enum(params, variants, &cont.attrs),
|
||||||
Data::Struct(Style::Struct, ref fields) => {
|
Data::Struct(Style::Struct, fields) => {
|
||||||
deserialize_struct(None, params, fields, &cont.attrs, None, &Untagged::No)
|
deserialize_struct(None, params, fields, &cont.attrs, None, &Untagged::No)
|
||||||
}
|
}
|
||||||
Data::Struct(Style::Tuple, ref fields) | Data::Struct(Style::Newtype, ref fields) => {
|
Data::Struct(Style::Tuple, fields) | Data::Struct(Style::Newtype, fields) => {
|
||||||
deserialize_tuple(None, params, fields, &cont.attrs, None)
|
deserialize_tuple(None, params, fields, &cont.attrs, None)
|
||||||
}
|
}
|
||||||
Data::Struct(Style::Unit, _) => deserialize_unit_struct(params, &cont.attrs),
|
Data::Struct(Style::Unit, _) => deserialize_unit_struct(params, &cont.attrs),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
match cont.data {
|
match &cont.data {
|
||||||
Data::Enum(ref variants) => {
|
Data::Enum(variants) => deserialize_custom_identifier(params, variants, &cont.attrs),
|
||||||
deserialize_custom_identifier(params, variants, &cont.attrs)
|
|
||||||
}
|
|
||||||
Data::Struct(_, _) => unreachable!("checked in serde_derive_internals"),
|
Data::Struct(_, _) => unreachable!("checked in serde_derive_internals"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -298,6 +298,7 @@ fn deserialize_in_place_body(cont: &Container, params: &Parameters) -> Option<St
|
|||||||
|
|
||||||
if cont.attrs.transparent()
|
if cont.attrs.transparent()
|
||||||
|| cont.attrs.type_from().is_some()
|
|| cont.attrs.type_from().is_some()
|
||||||
|
|| cont.attrs.type_try_from().is_some()
|
||||||
|| cont.attrs.identifier().is_some()
|
|| cont.attrs.identifier().is_some()
|
||||||
|| cont
|
|| cont
|
||||||
.data
|
.data
|
||||||
@@ -307,8 +308,8 @@ fn deserialize_in_place_body(cont: &Container, params: &Parameters) -> Option<St
|
|||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
let code = match cont.data {
|
let code = match &cont.data {
|
||||||
Data::Struct(Style::Struct, ref fields) => {
|
Data::Struct(Style::Struct, fields) => {
|
||||||
if let Some(code) = deserialize_struct_in_place(None, params, fields, &cont.attrs, None)
|
if let Some(code) = deserialize_struct_in_place(None, params, fields, &cont.attrs, None)
|
||||||
{
|
{
|
||||||
code
|
code
|
||||||
@@ -316,7 +317,7 @@ fn deserialize_in_place_body(cont: &Container, params: &Parameters) -> Option<St
|
|||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Data::Struct(Style::Tuple, ref fields) | Data::Struct(Style::Newtype, ref fields) => {
|
Data::Struct(Style::Tuple, fields) | Data::Struct(Style::Newtype, fields) => {
|
||||||
deserialize_tuple_in_place(None, params, fields, &cont.attrs, None)
|
deserialize_tuple_in_place(None, params, fields, &cont.attrs, None)
|
||||||
}
|
}
|
||||||
Data::Enum(_) | Data::Struct(Style::Unit, _) => {
|
Data::Enum(_) | Data::Struct(Style::Unit, _) => {
|
||||||
@@ -345,8 +346,8 @@ fn deserialize_in_place_body(_cont: &Container, _params: &Parameters) -> Option<
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn deserialize_transparent(cont: &Container, params: &Parameters) -> Fragment {
|
fn deserialize_transparent(cont: &Container, params: &Parameters) -> Fragment {
|
||||||
let fields = match cont.data {
|
let fields = match &cont.data {
|
||||||
Data::Struct(_, ref fields) => fields,
|
Data::Struct(_, fields) => fields,
|
||||||
Data::Enum(_) => unreachable!(),
|
Data::Enum(_) => unreachable!(),
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -366,9 +367,9 @@ fn deserialize_transparent(cont: &Container, params: &Parameters) -> Fragment {
|
|||||||
if field as *const Field == transparent_field as *const Field {
|
if field as *const Field == transparent_field as *const Field {
|
||||||
quote!(#member: __transparent)
|
quote!(#member: __transparent)
|
||||||
} else {
|
} else {
|
||||||
let value = match *field.attrs.default() {
|
let value = match field.attrs.default() {
|
||||||
attr::Default::Default => quote!(_serde::export::Default::default()),
|
attr::Default::Default => quote!(_serde::export::Default::default()),
|
||||||
attr::Default::Path(ref path) => quote!(#path()),
|
attr::Default::Path(path) => quote!(#path()),
|
||||||
attr::Default::None => quote!(_serde::export::PhantomData),
|
attr::Default::None => quote!(_serde::export::PhantomData),
|
||||||
};
|
};
|
||||||
quote!(#member: #value)
|
quote!(#member: #value)
|
||||||
@@ -390,6 +391,14 @@ fn deserialize_from(type_from: &syn::Type) -> Fragment {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn deserialize_try_from(type_try_from: &syn::Type) -> Fragment {
|
||||||
|
quote_block! {
|
||||||
|
_serde::export::Result::and_then(
|
||||||
|
<#type_try_from as _serde::Deserialize>::deserialize(__deserializer),
|
||||||
|
|v| _serde::export::TryFrom::try_from(v).map_err(_serde::de::Error::custom))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn deserialize_unit_struct(params: &Parameters, cattrs: &attr::Container) -> Fragment {
|
fn deserialize_unit_struct(params: &Parameters, cattrs: &attr::Container) -> Fragment {
|
||||||
let this = ¶ms.this;
|
let this = ¶ms.this;
|
||||||
let type_name = cattrs.name().deserialize_name();
|
let type_name = cattrs.name().deserialize_name();
|
||||||
@@ -445,7 +454,7 @@ fn deserialize_tuple(
|
|||||||
|
|
||||||
let is_enum = variant_ident.is_some();
|
let is_enum = variant_ident.is_some();
|
||||||
let type_path = match variant_ident {
|
let type_path = match variant_ident {
|
||||||
Some(ref variant_ident) => quote!(#construct::#variant_ident),
|
Some(variant_ident) => quote!(#construct::#variant_ident),
|
||||||
None => construct,
|
None => construct,
|
||||||
};
|
};
|
||||||
let expecting = match variant_ident {
|
let expecting = match variant_ident {
|
||||||
@@ -653,9 +662,9 @@ fn deserialize_seq(
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let value_if_none = match *field.attrs.default() {
|
let value_if_none = match field.attrs.default() {
|
||||||
attr::Default::Default => quote!(_serde::export::Default::default()),
|
attr::Default::Default => quote!(_serde::export::Default::default()),
|
||||||
attr::Default::Path(ref path) => quote!(#path()),
|
attr::Default::Path(path) => quote!(#path()),
|
||||||
attr::Default::None => quote!(
|
attr::Default::None => quote!(
|
||||||
return _serde::export::Err(_serde::de::Error::invalid_length(#index_in_seq, &#expecting));
|
return _serde::export::Err(_serde::de::Error::invalid_length(#index_in_seq, &#expecting));
|
||||||
),
|
),
|
||||||
@@ -691,11 +700,11 @@ fn deserialize_seq(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
let let_default = match *cattrs.default() {
|
let let_default = match cattrs.default() {
|
||||||
attr::Default::Default => Some(quote!(
|
attr::Default::Default => Some(quote!(
|
||||||
let __default: Self::Value = _serde::export::Default::default();
|
let __default: Self::Value = _serde::export::Default::default();
|
||||||
)),
|
)),
|
||||||
attr::Default::Path(ref path) => Some(quote!(
|
attr::Default::Path(path) => Some(quote!(
|
||||||
let __default: Self::Value = #path();
|
let __default: Self::Value = #path();
|
||||||
)),
|
)),
|
||||||
attr::Default::None => {
|
attr::Default::None => {
|
||||||
@@ -739,11 +748,11 @@ fn deserialize_seq_in_place(
|
|||||||
self.place.#member = #default;
|
self.place.#member = #default;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let value_if_none = match *field.attrs.default() {
|
let value_if_none = match field.attrs.default() {
|
||||||
attr::Default::Default => quote!(
|
attr::Default::Default => quote!(
|
||||||
self.place.#member = _serde::export::Default::default();
|
self.place.#member = _serde::export::Default::default();
|
||||||
),
|
),
|
||||||
attr::Default::Path(ref path) => quote!(
|
attr::Default::Path(path) => quote!(
|
||||||
self.place.#member = #path();
|
self.place.#member = #path();
|
||||||
),
|
),
|
||||||
attr::Default::None => quote!(
|
attr::Default::None => quote!(
|
||||||
@@ -782,11 +791,11 @@ fn deserialize_seq_in_place(
|
|||||||
|
|
||||||
let this = ¶ms.this;
|
let this = ¶ms.this;
|
||||||
let (_, ty_generics, _) = params.generics.split_for_impl();
|
let (_, ty_generics, _) = params.generics.split_for_impl();
|
||||||
let let_default = match *cattrs.default() {
|
let let_default = match cattrs.default() {
|
||||||
attr::Default::Default => Some(quote!(
|
attr::Default::Default => Some(quote!(
|
||||||
let __default: #this #ty_generics = _serde::export::Default::default();
|
let __default: #this #ty_generics = _serde::export::Default::default();
|
||||||
)),
|
)),
|
||||||
attr::Default::Path(ref path) => Some(quote!(
|
attr::Default::Path(path) => Some(quote!(
|
||||||
let __default: #this #ty_generics = #path();
|
let __default: #this #ty_generics = #path();
|
||||||
)),
|
)),
|
||||||
attr::Default::None => {
|
attr::Default::None => {
|
||||||
@@ -896,7 +905,7 @@ fn deserialize_struct(
|
|||||||
};
|
};
|
||||||
|
|
||||||
let type_path = match variant_ident {
|
let type_path = match variant_ident {
|
||||||
Some(ref variant_ident) => quote!(#construct::#variant_ident),
|
Some(variant_ident) => quote!(#construct::#variant_ident),
|
||||||
None => construct,
|
None => construct,
|
||||||
};
|
};
|
||||||
let expecting = match variant_ident {
|
let expecting = match variant_ident {
|
||||||
@@ -1133,15 +1142,14 @@ fn deserialize_enum(
|
|||||||
variants: &[Variant],
|
variants: &[Variant],
|
||||||
cattrs: &attr::Container,
|
cattrs: &attr::Container,
|
||||||
) -> Fragment {
|
) -> Fragment {
|
||||||
match *cattrs.tag() {
|
match cattrs.tag() {
|
||||||
attr::TagType::External => deserialize_externally_tagged_enum(params, variants, cattrs),
|
attr::TagType::External => deserialize_externally_tagged_enum(params, variants, cattrs),
|
||||||
attr::TagType::Internal { ref tag } => {
|
attr::TagType::Internal { tag } => {
|
||||||
deserialize_internally_tagged_enum(params, variants, cattrs, tag)
|
deserialize_internally_tagged_enum(params, variants, cattrs, tag)
|
||||||
}
|
}
|
||||||
attr::TagType::Adjacent {
|
attr::TagType::Adjacent { tag, content } => {
|
||||||
ref tag,
|
deserialize_adjacently_tagged_enum(params, variants, cattrs, tag, content)
|
||||||
ref content,
|
}
|
||||||
} => deserialize_adjacently_tagged_enum(params, variants, cattrs, tag, content),
|
|
||||||
attr::TagType::None => deserialize_untagged_enum(params, variants, cattrs),
|
attr::TagType::None => deserialize_untagged_enum(params, variants, cattrs),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1163,12 +1171,10 @@ fn prepare_enum_variant_enum(
|
|||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let other_idx = variants
|
let other_idx = variants.iter().position(|variant| variant.attrs.other());
|
||||||
.iter()
|
|
||||||
.position(|ref variant| variant.attrs.other());
|
|
||||||
|
|
||||||
let variants_stmt = {
|
let variants_stmt = {
|
||||||
let variant_names = variant_names_idents.iter().map(|&(ref name, _, _)| name);
|
let variant_names = variant_names_idents.iter().map(|(name, _, _)| name);
|
||||||
quote! {
|
quote! {
|
||||||
const VARIANTS: &'static [&'static str] = &[ #(#variant_names),* ];
|
const VARIANTS: &'static [&'static str] = &[ #(#variant_names),* ];
|
||||||
}
|
}
|
||||||
@@ -1677,9 +1683,12 @@ fn deserialize_externally_tagged_variant(
|
|||||||
_serde::export::Ok(#this::#variant_ident)
|
_serde::export::Ok(#this::#variant_ident)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Style::Newtype => {
|
Style::Newtype => deserialize_externally_tagged_newtype_variant(
|
||||||
deserialize_externally_tagged_newtype_variant(variant_ident, params, &variant.fields[0])
|
variant_ident,
|
||||||
}
|
params,
|
||||||
|
&variant.fields[0],
|
||||||
|
cattrs,
|
||||||
|
),
|
||||||
Style::Tuple => {
|
Style::Tuple => {
|
||||||
deserialize_tuple(Some(variant_ident), params, &variant.fields, cattrs, None)
|
deserialize_tuple(Some(variant_ident), params, &variant.fields, cattrs, None)
|
||||||
}
|
}
|
||||||
@@ -1706,14 +1715,18 @@ fn deserialize_internally_tagged_variant(
|
|||||||
|
|
||||||
let variant_ident = &variant.ident;
|
let variant_ident = &variant.ident;
|
||||||
|
|
||||||
match variant.style {
|
match effective_style(variant) {
|
||||||
Style::Unit => {
|
Style::Unit => {
|
||||||
let this = ¶ms.this;
|
let this = ¶ms.this;
|
||||||
let type_name = params.type_name();
|
let type_name = params.type_name();
|
||||||
let variant_name = variant.ident.to_string();
|
let variant_name = variant.ident.to_string();
|
||||||
|
let default = variant.fields.get(0).map(|field| {
|
||||||
|
let default = Expr(expr_is_missing(field, cattrs));
|
||||||
|
quote!((#default))
|
||||||
|
});
|
||||||
quote_block! {
|
quote_block! {
|
||||||
try!(_serde::Deserializer::deserialize_any(#deserializer, _serde::private::de::InternallyTaggedUnitVisitor::new(#type_name, #variant_name)));
|
try!(_serde::Deserializer::deserialize_any(#deserializer, _serde::private::de::InternallyTaggedUnitVisitor::new(#type_name, #variant_name)));
|
||||||
_serde::export::Ok(#this::#variant_ident)
|
_serde::export::Ok(#this::#variant_ident #default)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Style::Newtype => deserialize_untagged_newtype_variant(
|
Style::Newtype => deserialize_untagged_newtype_variant(
|
||||||
@@ -1751,17 +1764,21 @@ fn deserialize_untagged_variant(
|
|||||||
|
|
||||||
let variant_ident = &variant.ident;
|
let variant_ident = &variant.ident;
|
||||||
|
|
||||||
match variant.style {
|
match effective_style(variant) {
|
||||||
Style::Unit => {
|
Style::Unit => {
|
||||||
let this = ¶ms.this;
|
let this = ¶ms.this;
|
||||||
let type_name = params.type_name();
|
let type_name = params.type_name();
|
||||||
let variant_name = variant.ident.to_string();
|
let variant_name = variant.ident.to_string();
|
||||||
|
let default = variant.fields.get(0).map(|field| {
|
||||||
|
let default = Expr(expr_is_missing(field, cattrs));
|
||||||
|
quote!((#default))
|
||||||
|
});
|
||||||
quote_expr! {
|
quote_expr! {
|
||||||
match _serde::Deserializer::deserialize_any(
|
match _serde::Deserializer::deserialize_any(
|
||||||
#deserializer,
|
#deserializer,
|
||||||
_serde::private::de::UntaggedUnitVisitor::new(#type_name, #variant_name)
|
_serde::private::de::UntaggedUnitVisitor::new(#type_name, #variant_name)
|
||||||
) {
|
) {
|
||||||
_serde::export::Ok(()) => _serde::export::Ok(#this::#variant_ident),
|
_serde::export::Ok(()) => _serde::export::Ok(#this::#variant_ident #default),
|
||||||
_serde::export::Err(__err) => _serde::export::Err(__err),
|
_serde::export::Err(__err) => _serde::export::Err(__err),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1794,8 +1811,19 @@ fn deserialize_externally_tagged_newtype_variant(
|
|||||||
variant_ident: &syn::Ident,
|
variant_ident: &syn::Ident,
|
||||||
params: &Parameters,
|
params: &Parameters,
|
||||||
field: &Field,
|
field: &Field,
|
||||||
|
cattrs: &attr::Container,
|
||||||
) -> Fragment {
|
) -> Fragment {
|
||||||
let this = ¶ms.this;
|
let this = ¶ms.this;
|
||||||
|
|
||||||
|
if field.attrs.skip_deserializing() {
|
||||||
|
let this = ¶ms.this;
|
||||||
|
let default = Expr(expr_is_missing(field, cattrs));
|
||||||
|
return quote_block! {
|
||||||
|
try!(_serde::de::VariantAccess::unit_variant(__variant));
|
||||||
|
_serde::export::Ok(#this::#variant_ident(#default))
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
match field.attrs.deserialize_with() {
|
match field.attrs.deserialize_with() {
|
||||||
None => {
|
None => {
|
||||||
let field_ty = field.ty;
|
let field_ty = field.ty;
|
||||||
@@ -1850,7 +1878,7 @@ fn deserialize_generated_identifier(
|
|||||||
other_idx: Option<usize>,
|
other_idx: Option<usize>,
|
||||||
) -> Fragment {
|
) -> Fragment {
|
||||||
let this = quote!(__Field);
|
let this = quote!(__Field);
|
||||||
let field_idents: &Vec<_> = &fields.iter().map(|&(_, ref ident, _)| ident).collect();
|
let field_idents: &Vec<_> = &fields.iter().map(|(_, ident, _)| ident).collect();
|
||||||
|
|
||||||
let (ignore_variant, fallthrough) = if !is_variant && cattrs.has_flatten() {
|
let (ignore_variant, fallthrough) = if !is_variant && cattrs.has_flatten() {
|
||||||
let ignore_variant = quote!(__other(_serde::private::de::Content<'de>),);
|
let ignore_variant = quote!(__other(_serde::private::de::Content<'de>),);
|
||||||
@@ -1956,7 +1984,7 @@ fn deserialize_custom_identifier(
|
|||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let names = names_idents.iter().map(|&(ref name, _, _)| name);
|
let names = names_idents.iter().map(|(name, _, _)| name);
|
||||||
|
|
||||||
let names_const = if fallthrough.is_some() {
|
let names_const = if fallthrough.is_some() {
|
||||||
None
|
None
|
||||||
@@ -2013,26 +2041,26 @@ fn deserialize_identifier(
|
|||||||
collect_other_fields: bool,
|
collect_other_fields: bool,
|
||||||
) -> Fragment {
|
) -> Fragment {
|
||||||
let mut flat_fields = Vec::new();
|
let mut flat_fields = Vec::new();
|
||||||
for &(_, ref ident, ref aliases) in fields {
|
for (_, ident, aliases) in fields {
|
||||||
flat_fields.extend(aliases.iter().map(|alias| (alias, ident)))
|
flat_fields.extend(aliases.iter().map(|alias| (alias, ident)))
|
||||||
}
|
}
|
||||||
|
|
||||||
let field_strs = flat_fields.iter().map(|&(ref name, _)| name);
|
let field_strs = flat_fields.iter().map(|(name, _)| name);
|
||||||
let field_borrowed_strs = flat_fields.iter().map(|&(ref name, _)| name);
|
let field_borrowed_strs = flat_fields.iter().map(|(name, _)| name);
|
||||||
let field_bytes = flat_fields
|
let field_bytes = flat_fields
|
||||||
.iter()
|
.iter()
|
||||||
.map(|&(ref name, _)| Literal::byte_string(name.as_bytes()));
|
.map(|(name, _)| Literal::byte_string(name.as_bytes()));
|
||||||
let field_borrowed_bytes = flat_fields
|
let field_borrowed_bytes = flat_fields
|
||||||
.iter()
|
.iter()
|
||||||
.map(|&(ref name, _)| Literal::byte_string(name.as_bytes()));
|
.map(|(name, _)| Literal::byte_string(name.as_bytes()));
|
||||||
|
|
||||||
let constructors: &Vec<_> = &flat_fields
|
let constructors: &Vec<_> = &flat_fields
|
||||||
.iter()
|
.iter()
|
||||||
.map(|&(_, ref ident)| quote!(#this::#ident))
|
.map(|(_, ident)| quote!(#this::#ident))
|
||||||
.collect();
|
.collect();
|
||||||
let main_constructors: &Vec<_> = &fields
|
let main_constructors: &Vec<_> = &fields
|
||||||
.iter()
|
.iter()
|
||||||
.map(|&(_, ref ident, _)| quote!(#this::#ident))
|
.map(|(_, ident, _)| quote!(#this::#ident))
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let expecting = if is_variant {
|
let expecting = if is_variant {
|
||||||
@@ -2294,7 +2322,7 @@ fn deserialize_struct_as_struct_visitor(
|
|||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let fields_stmt = {
|
let fields_stmt = {
|
||||||
let field_names = field_names_idents.iter().map(|&(ref name, _, _)| name);
|
let field_names = field_names_idents.iter().map(|(name, _, _)| name);
|
||||||
quote_block! {
|
quote_block! {
|
||||||
const FIELDS: &'static [&'static str] = &[ #(#field_names),* ];
|
const FIELDS: &'static [&'static str] = &[ #(#field_names),* ];
|
||||||
}
|
}
|
||||||
@@ -2350,7 +2378,7 @@ fn deserialize_map(
|
|||||||
let let_values = fields_names
|
let let_values = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| !field.attrs.skip_deserializing() && !field.attrs.flatten())
|
.filter(|&&(field, _)| !field.attrs.skip_deserializing() && !field.attrs.flatten())
|
||||||
.map(|&(field, ref name)| {
|
.map(|(field, name)| {
|
||||||
let field_ty = field.ty;
|
let field_ty = field.ty;
|
||||||
quote! {
|
quote! {
|
||||||
let mut #name: _serde::export::Option<#field_ty> = _serde::export::None;
|
let mut #name: _serde::export::Option<#field_ty> = _serde::export::None;
|
||||||
@@ -2373,7 +2401,7 @@ fn deserialize_map(
|
|||||||
let value_arms = fields_names
|
let value_arms = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| !field.attrs.skip_deserializing() && !field.attrs.flatten())
|
.filter(|&&(field, _)| !field.attrs.skip_deserializing() && !field.attrs.flatten())
|
||||||
.map(|&(field, ref name)| {
|
.map(|(field, name)| {
|
||||||
let deser_name = field.attrs.name().deserialize_name();
|
let deser_name = field.attrs.name().deserialize_name();
|
||||||
|
|
||||||
let visit = match field.attrs.deserialize_with() {
|
let visit = match field.attrs.deserialize_with() {
|
||||||
@@ -2449,7 +2477,7 @@ fn deserialize_map(
|
|||||||
let extract_values = fields_names
|
let extract_values = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| !field.attrs.skip_deserializing() && !field.attrs.flatten())
|
.filter(|&&(field, _)| !field.attrs.skip_deserializing() && !field.attrs.flatten())
|
||||||
.map(|&(field, ref name)| {
|
.map(|(field, name)| {
|
||||||
let missing_expr = Match(expr_is_missing(field, cattrs));
|
let missing_expr = Match(expr_is_missing(field, cattrs));
|
||||||
|
|
||||||
quote! {
|
quote! {
|
||||||
@@ -2463,7 +2491,7 @@ fn deserialize_map(
|
|||||||
let extract_collected = fields_names
|
let extract_collected = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| field.attrs.flatten() && !field.attrs.skip_deserializing())
|
.filter(|&&(field, _)| field.attrs.flatten() && !field.attrs.skip_deserializing())
|
||||||
.map(|&(field, ref name)| {
|
.map(|(field, name)| {
|
||||||
let field_ty = field.ty;
|
let field_ty = field.ty;
|
||||||
let func = match field.attrs.deserialize_with() {
|
let func = match field.attrs.deserialize_with() {
|
||||||
None => {
|
None => {
|
||||||
@@ -2498,7 +2526,7 @@ fn deserialize_map(
|
|||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
let result = fields_names.iter().map(|&(field, ref name)| {
|
let result = fields_names.iter().map(|(field, name)| {
|
||||||
let member = &field.member;
|
let member = &field.member;
|
||||||
if field.attrs.skip_deserializing() {
|
if field.attrs.skip_deserializing() {
|
||||||
let value = Expr(expr_is_missing(field, cattrs));
|
let value = Expr(expr_is_missing(field, cattrs));
|
||||||
@@ -2508,11 +2536,11 @@ fn deserialize_map(
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
let let_default = match *cattrs.default() {
|
let let_default = match cattrs.default() {
|
||||||
attr::Default::Default => Some(quote!(
|
attr::Default::Default => Some(quote!(
|
||||||
let __default: Self::Value = _serde::export::Default::default();
|
let __default: Self::Value = _serde::export::Default::default();
|
||||||
)),
|
)),
|
||||||
attr::Default::Path(ref path) => Some(quote!(
|
attr::Default::Path(path) => Some(quote!(
|
||||||
let __default: Self::Value = #path();
|
let __default: Self::Value = #path();
|
||||||
)),
|
)),
|
||||||
attr::Default::None => {
|
attr::Default::None => {
|
||||||
@@ -2571,7 +2599,7 @@ fn deserialize_struct_as_struct_in_place_visitor(
|
|||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
let fields_stmt = {
|
let fields_stmt = {
|
||||||
let field_names = field_names_idents.iter().map(|&(ref name, _, _)| name);
|
let field_names = field_names_idents.iter().map(|(name, _, _)| name);
|
||||||
quote_block! {
|
quote_block! {
|
||||||
const FIELDS: &'static [&'static str] = &[ #(#field_names),* ];
|
const FIELDS: &'static [&'static str] = &[ #(#field_names),* ];
|
||||||
}
|
}
|
||||||
@@ -2604,7 +2632,7 @@ fn deserialize_map_in_place(
|
|||||||
let let_flags = fields_names
|
let let_flags = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| !field.attrs.skip_deserializing())
|
.filter(|&&(field, _)| !field.attrs.skip_deserializing())
|
||||||
.map(|&(_, ref name)| {
|
.map(|(_, name)| {
|
||||||
quote! {
|
quote! {
|
||||||
let mut #name: bool = false;
|
let mut #name: bool = false;
|
||||||
}
|
}
|
||||||
@@ -2614,7 +2642,7 @@ fn deserialize_map_in_place(
|
|||||||
let value_arms_from = fields_names
|
let value_arms_from = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| !field.attrs.skip_deserializing())
|
.filter(|&&(field, _)| !field.attrs.skip_deserializing())
|
||||||
.map(|&(field, ref name)| {
|
.map(|(field, name)| {
|
||||||
let deser_name = field.attrs.name().deserialize_name();
|
let deser_name = field.attrs.name().deserialize_name();
|
||||||
let member = &field.member;
|
let member = &field.member;
|
||||||
|
|
||||||
@@ -2681,7 +2709,7 @@ fn deserialize_map_in_place(
|
|||||||
let check_flags = fields_names
|
let check_flags = fields_names
|
||||||
.iter()
|
.iter()
|
||||||
.filter(|&&(field, _)| !field.attrs.skip_deserializing())
|
.filter(|&&(field, _)| !field.attrs.skip_deserializing())
|
||||||
.map(|&(field, ref name)| {
|
.map(|(field, name)| {
|
||||||
let missing_expr = expr_is_missing(field, cattrs);
|
let missing_expr = expr_is_missing(field, cattrs);
|
||||||
// If missing_expr unconditionally returns an error, don't try
|
// If missing_expr unconditionally returns an error, don't try
|
||||||
// to assign its value to self.place.
|
// to assign its value to self.place.
|
||||||
@@ -2709,11 +2737,11 @@ fn deserialize_map_in_place(
|
|||||||
let this = ¶ms.this;
|
let this = ¶ms.this;
|
||||||
let (_, _, ty_generics, _) = split_with_de_lifetime(params);
|
let (_, _, ty_generics, _) = split_with_de_lifetime(params);
|
||||||
|
|
||||||
let let_default = match *cattrs.default() {
|
let let_default = match cattrs.default() {
|
||||||
attr::Default::Default => Some(quote!(
|
attr::Default::Default => Some(quote!(
|
||||||
let __default: #this #ty_generics = _serde::export::Default::default();
|
let __default: #this #ty_generics = _serde::export::Default::default();
|
||||||
)),
|
)),
|
||||||
attr::Default::Path(ref path) => Some(quote!(
|
attr::Default::Path(path) => Some(quote!(
|
||||||
let __default: #this #ty_generics = #path();
|
let __default: #this #ty_generics = #path();
|
||||||
)),
|
)),
|
||||||
attr::Default::None => {
|
attr::Default::None => {
|
||||||
@@ -2832,13 +2860,13 @@ fn wrap_deserialize_variant_with(
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn expr_is_missing(field: &Field, cattrs: &attr::Container) -> Fragment {
|
fn expr_is_missing(field: &Field, cattrs: &attr::Container) -> Fragment {
|
||||||
match *field.attrs.default() {
|
match field.attrs.default() {
|
||||||
attr::Default::Default => {
|
attr::Default::Default => {
|
||||||
let span = field.original.span();
|
let span = field.original.span();
|
||||||
let func = quote_spanned!(span=> _serde::export::Default::default);
|
let func = quote_spanned!(span=> _serde::export::Default::default);
|
||||||
return quote_expr!(#func());
|
return quote_expr!(#func());
|
||||||
}
|
}
|
||||||
attr::Default::Path(ref path) => {
|
attr::Default::Path(path) => {
|
||||||
return quote_expr!(#path());
|
return quote_expr!(#path());
|
||||||
}
|
}
|
||||||
attr::Default::None => { /* below */ }
|
attr::Default::None => { /* below */ }
|
||||||
@@ -2869,6 +2897,13 @@ fn expr_is_missing(field: &Field, cattrs: &attr::Container) -> Fragment {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn effective_style(variant: &Variant) -> Style {
|
||||||
|
match variant.style {
|
||||||
|
Style::Newtype if variant.fields[0].attrs.skip_deserializing() => Style::Unit,
|
||||||
|
other => other,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct DeImplGenerics<'a>(&'a Parameters);
|
struct DeImplGenerics<'a>(&'a Parameters);
|
||||||
#[cfg(feature = "deserialize_in_place")]
|
#[cfg(feature = "deserialize_in_place")]
|
||||||
struct InPlaceImplGenerics<'a>(&'a Parameters);
|
struct InPlaceImplGenerics<'a>(&'a Parameters);
|
||||||
@@ -2895,11 +2930,11 @@ impl<'a> ToTokens for InPlaceImplGenerics<'a> {
|
|||||||
|
|
||||||
// Add lifetime for `&'place mut Self, and `'a: 'place`
|
// Add lifetime for `&'place mut Self, and `'a: 'place`
|
||||||
for param in &mut generics.params {
|
for param in &mut generics.params {
|
||||||
match *param {
|
match param {
|
||||||
syn::GenericParam::Lifetime(ref mut param) => {
|
syn::GenericParam::Lifetime(param) => {
|
||||||
param.bounds.push(place_lifetime.lifetime.clone());
|
param.bounds.push(place_lifetime.lifetime.clone());
|
||||||
}
|
}
|
||||||
syn::GenericParam::Type(ref mut param) => {
|
syn::GenericParam::Type(param) => {
|
||||||
param.bounds.push(syn::TypeParamBound::Lifetime(
|
param.bounds.push(syn::TypeParamBound::Lifetime(
|
||||||
place_lifetime.lifetime.clone(),
|
place_lifetime.lifetime.clone(),
|
||||||
));
|
));
|
||||||
|
|||||||
@@ -27,9 +27,9 @@ macro_rules! quote_block {
|
|||||||
pub struct Expr(pub Fragment);
|
pub struct Expr(pub Fragment);
|
||||||
impl ToTokens for Expr {
|
impl ToTokens for Expr {
|
||||||
fn to_tokens(&self, out: &mut TokenStream) {
|
fn to_tokens(&self, out: &mut TokenStream) {
|
||||||
match self.0 {
|
match &self.0 {
|
||||||
Fragment::Expr(ref expr) => expr.to_tokens(out),
|
Fragment::Expr(expr) => expr.to_tokens(out),
|
||||||
Fragment::Block(ref block) => {
|
Fragment::Block(block) => {
|
||||||
token::Brace::default().surround(out, |out| block.to_tokens(out));
|
token::Brace::default().surround(out, |out| block.to_tokens(out));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -40,9 +40,9 @@ impl ToTokens for Expr {
|
|||||||
pub struct Stmts(pub Fragment);
|
pub struct Stmts(pub Fragment);
|
||||||
impl ToTokens for Stmts {
|
impl ToTokens for Stmts {
|
||||||
fn to_tokens(&self, out: &mut TokenStream) {
|
fn to_tokens(&self, out: &mut TokenStream) {
|
||||||
match self.0 {
|
match &self.0 {
|
||||||
Fragment::Expr(ref expr) => expr.to_tokens(out),
|
Fragment::Expr(expr) => expr.to_tokens(out),
|
||||||
Fragment::Block(ref block) => block.to_tokens(out),
|
Fragment::Block(block) => block.to_tokens(out),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -52,12 +52,12 @@ impl ToTokens for Stmts {
|
|||||||
pub struct Match(pub Fragment);
|
pub struct Match(pub Fragment);
|
||||||
impl ToTokens for Match {
|
impl ToTokens for Match {
|
||||||
fn to_tokens(&self, out: &mut TokenStream) {
|
fn to_tokens(&self, out: &mut TokenStream) {
|
||||||
match self.0 {
|
match &self.0 {
|
||||||
Fragment::Expr(ref expr) => {
|
Fragment::Expr(expr) => {
|
||||||
expr.to_tokens(out);
|
expr.to_tokens(out);
|
||||||
<Token![,]>::default().to_tokens(out);
|
<Token![,]>::default().to_tokens(out);
|
||||||
}
|
}
|
||||||
Fragment::Block(ref block) => {
|
Fragment::Block(block) => {
|
||||||
token::Brace::default().surround(out, |out| block.to_tokens(out));
|
token::Brace::default().surround(out, |out| block.to_tokens(out));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -66,9 +66,9 @@ impl ToTokens for Match {
|
|||||||
|
|
||||||
impl AsRef<TokenStream> for Fragment {
|
impl AsRef<TokenStream> for Fragment {
|
||||||
fn as_ref(&self) -> &TokenStream {
|
fn as_ref(&self) -> &TokenStream {
|
||||||
match *self {
|
match self {
|
||||||
Fragment::Expr(ref expr) => expr,
|
Fragment::Expr(expr) => expr,
|
||||||
Fragment::Block(ref block) => block,
|
Fragment::Block(block) => block,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,11 +67,9 @@ impl<'a> Container<'a> {
|
|||||||
) -> Option<Container<'a>> {
|
) -> Option<Container<'a>> {
|
||||||
let mut attrs = attr::Container::from_ast(cx, item);
|
let mut attrs = attr::Container::from_ast(cx, item);
|
||||||
|
|
||||||
let mut data = match item.data {
|
let mut data = match &item.data {
|
||||||
syn::Data::Enum(ref data) => {
|
syn::Data::Enum(data) => Data::Enum(enum_from_ast(cx, &data.variants, attrs.default())),
|
||||||
Data::Enum(enum_from_ast(cx, &data.variants, attrs.default()))
|
syn::Data::Struct(data) => {
|
||||||
}
|
|
||||||
syn::Data::Struct(ref data) => {
|
|
||||||
let (style, fields) = struct_from_ast(cx, &data.fields, None, attrs.default());
|
let (style, fields) = struct_from_ast(cx, &data.fields, None, attrs.default());
|
||||||
Data::Struct(style, fields)
|
Data::Struct(style, fields)
|
||||||
}
|
}
|
||||||
@@ -82,8 +80,8 @@ impl<'a> Container<'a> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let mut has_flatten = false;
|
let mut has_flatten = false;
|
||||||
match data {
|
match &mut data {
|
||||||
Data::Enum(ref mut variants) => {
|
Data::Enum(variants) => {
|
||||||
for variant in variants {
|
for variant in variants {
|
||||||
variant.attrs.rename_by_rules(attrs.rename_all_rules());
|
variant.attrs.rename_by_rules(attrs.rename_all_rules());
|
||||||
for field in &mut variant.fields {
|
for field in &mut variant.fields {
|
||||||
@@ -96,7 +94,7 @@ impl<'a> Container<'a> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Data::Struct(_, ref mut fields) => {
|
Data::Struct(_, fields) => {
|
||||||
for field in fields {
|
for field in fields {
|
||||||
if field.attrs.flatten() {
|
if field.attrs.flatten() {
|
||||||
has_flatten = true;
|
has_flatten = true;
|
||||||
@@ -124,11 +122,11 @@ impl<'a> Container<'a> {
|
|||||||
|
|
||||||
impl<'a> Data<'a> {
|
impl<'a> Data<'a> {
|
||||||
pub fn all_fields(&'a self) -> Box<Iterator<Item = &'a Field<'a>> + 'a> {
|
pub fn all_fields(&'a self) -> Box<Iterator<Item = &'a Field<'a>> + 'a> {
|
||||||
match *self {
|
match self {
|
||||||
Data::Enum(ref variants) => {
|
Data::Enum(variants) => {
|
||||||
Box::new(variants.iter().flat_map(|variant| variant.fields.iter()))
|
Box::new(variants.iter().flat_map(|variant| variant.fields.iter()))
|
||||||
}
|
}
|
||||||
Data::Struct(_, ref fields) => Box::new(fields.iter()),
|
Data::Struct(_, fields) => Box::new(fields.iter()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,16 +163,16 @@ fn struct_from_ast<'a>(
|
|||||||
attrs: Option<&attr::Variant>,
|
attrs: Option<&attr::Variant>,
|
||||||
container_default: &attr::Default,
|
container_default: &attr::Default,
|
||||||
) -> (Style, Vec<Field<'a>>) {
|
) -> (Style, Vec<Field<'a>>) {
|
||||||
match *fields {
|
match fields {
|
||||||
syn::Fields::Named(ref fields) => (
|
syn::Fields::Named(fields) => (
|
||||||
Style::Struct,
|
Style::Struct,
|
||||||
fields_from_ast(cx, &fields.named, attrs, container_default),
|
fields_from_ast(cx, &fields.named, attrs, container_default),
|
||||||
),
|
),
|
||||||
syn::Fields::Unnamed(ref fields) if fields.unnamed.len() == 1 => (
|
syn::Fields::Unnamed(fields) if fields.unnamed.len() == 1 => (
|
||||||
Style::Newtype,
|
Style::Newtype,
|
||||||
fields_from_ast(cx, &fields.unnamed, attrs, container_default),
|
fields_from_ast(cx, &fields.unnamed, attrs, container_default),
|
||||||
),
|
),
|
||||||
syn::Fields::Unnamed(ref fields) => (
|
syn::Fields::Unnamed(fields) => (
|
||||||
Style::Tuple,
|
Style::Tuple,
|
||||||
fields_from_ast(cx, &fields.unnamed, attrs, container_default),
|
fields_from_ast(cx, &fields.unnamed, attrs, container_default),
|
||||||
),
|
),
|
||||||
@@ -192,8 +190,8 @@ fn fields_from_ast<'a>(
|
|||||||
.iter()
|
.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.map(|(i, field)| Field {
|
.map(|(i, field)| Field {
|
||||||
member: match field.ident {
|
member: match &field.ident {
|
||||||
Some(ref ident) => syn::Member::Named(ident.clone()),
|
Some(ident) => syn::Member::Named(ident.clone()),
|
||||||
None => syn::Member::Unnamed(i.into()),
|
None => syn::Member::Unnamed(i.into()),
|
||||||
},
|
},
|
||||||
attrs: attr::Field::from_ast(cx, i, field, attrs, container_default),
|
attrs: attr::Field::from_ast(cx, i, field, attrs, container_default),
|
||||||
|
|||||||
+712
-742
File diff suppressed because it is too large
Load Diff
@@ -13,6 +13,7 @@ pub fn check(cx: &Ctxt, cont: &mut Container, derive: Derive) {
|
|||||||
check_internal_tag_field_name_conflict(cx, cont);
|
check_internal_tag_field_name_conflict(cx, cont);
|
||||||
check_adjacent_tag_conflict(cx, cont);
|
check_adjacent_tag_conflict(cx, cont);
|
||||||
check_transparent(cx, cont, derive);
|
check_transparent(cx, cont, derive);
|
||||||
|
check_from_and_try_from(cx, cont);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Getters are only allowed inside structs (not enums) with the `remote`
|
/// Getters are only allowed inside structs (not enums) with the `remote`
|
||||||
@@ -31,8 +32,7 @@ fn check_getter(cx: &Ctxt, cont: &Container) {
|
|||||||
if cont.data.has_getter() && cont.attrs.remote().is_none() {
|
if cont.data.has_getter() && cont.attrs.remote().is_none() {
|
||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
cont.original,
|
cont.original,
|
||||||
"#[serde(getter = \"...\")] can only be used in structs \
|
"#[serde(getter = \"...\")] can only be used in structs that have #[serde(remote = \"...\")]",
|
||||||
that have #[serde(remote = \"...\")]",
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -41,17 +41,17 @@ fn check_getter(cx: &Ctxt, cont: &Container) {
|
|||||||
|
|
||||||
/// Flattening has some restrictions we can test.
|
/// Flattening has some restrictions we can test.
|
||||||
fn check_flatten(cx: &Ctxt, cont: &Container) {
|
fn check_flatten(cx: &Ctxt, cont: &Container) {
|
||||||
match cont.data {
|
match &cont.data {
|
||||||
Data::Enum(ref variants) => {
|
Data::Enum(variants) => {
|
||||||
for variant in variants {
|
for variant in variants {
|
||||||
for field in &variant.fields {
|
for field in &variant.fields {
|
||||||
check_flatten_field(cx, variant.style, field);
|
check_flatten_field(cx, variant.style, field);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Data::Struct(style, ref fields) => {
|
Data::Struct(style, fields) => {
|
||||||
for field in fields {
|
for field in fields {
|
||||||
check_flatten_field(cx, style, field);
|
check_flatten_field(cx, *style, field);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -85,8 +85,8 @@ fn check_flatten_field(cx: &Ctxt, style: Style, field: &Field) {
|
|||||||
/// `field_identifier` all but possibly one variant must be unit variants. The
|
/// `field_identifier` all but possibly one variant must be unit variants. The
|
||||||
/// last variant may be a newtype variant which is an implicit "other" case.
|
/// last variant may be a newtype variant which is an implicit "other" case.
|
||||||
fn check_identifier(cx: &Ctxt, cont: &Container) {
|
fn check_identifier(cx: &Ctxt, cont: &Container) {
|
||||||
let variants = match cont.data {
|
let variants = match &cont.data {
|
||||||
Data::Enum(ref variants) => variants,
|
Data::Enum(variants) => variants,
|
||||||
Data::Struct(_, _) => {
|
Data::Struct(_, _) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -169,8 +169,8 @@ fn check_identifier(cx: &Ctxt, cont: &Container) {
|
|||||||
/// Skip-(de)serializing attributes are not allowed on variants marked
|
/// Skip-(de)serializing attributes are not allowed on variants marked
|
||||||
/// (de)serialize_with.
|
/// (de)serialize_with.
|
||||||
fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
||||||
let variants = match cont.data {
|
let variants = match &cont.data {
|
||||||
Data::Enum(ref variants) => variants,
|
Data::Enum(variants) => variants,
|
||||||
Data::Struct(_, _) => {
|
Data::Struct(_, _) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -182,8 +182,7 @@ fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
|||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
variant.original,
|
variant.original,
|
||||||
format!(
|
format!(
|
||||||
"variant `{}` cannot have both #[serde(serialize_with)] and \
|
"variant `{}` cannot have both #[serde(serialize_with)] and #[serde(skip_serializing)]",
|
||||||
#[serde(skip_serializing)]",
|
|
||||||
variant.ident
|
variant.ident
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -196,8 +195,7 @@ fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
|||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
variant.original,
|
variant.original,
|
||||||
format!(
|
format!(
|
||||||
"variant `{}` cannot have both #[serde(serialize_with)] and \
|
"variant `{}` cannot have both #[serde(serialize_with)] and a field {} marked with #[serde(skip_serializing)]",
|
||||||
a field {} marked with #[serde(skip_serializing)]",
|
|
||||||
variant.ident, member
|
variant.ident, member
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -207,8 +205,7 @@ fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
|||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
variant.original,
|
variant.original,
|
||||||
format!(
|
format!(
|
||||||
"variant `{}` cannot have both #[serde(serialize_with)] and \
|
"variant `{}` cannot have both #[serde(serialize_with)] and a field {} marked with #[serde(skip_serializing_if)]",
|
||||||
a field {} marked with #[serde(skip_serializing_if)]",
|
|
||||||
variant.ident, member
|
variant.ident, member
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -221,8 +218,7 @@ fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
|||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
variant.original,
|
variant.original,
|
||||||
format!(
|
format!(
|
||||||
"variant `{}` cannot have both #[serde(deserialize_with)] and \
|
"variant `{}` cannot have both #[serde(deserialize_with)] and #[serde(skip_deserializing)]",
|
||||||
#[serde(skip_deserializing)]",
|
|
||||||
variant.ident
|
variant.ident
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -235,8 +231,7 @@ fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
|||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
variant.original,
|
variant.original,
|
||||||
format!(
|
format!(
|
||||||
"variant `{}` cannot have both #[serde(deserialize_with)] \
|
"variant `{}` cannot have both #[serde(deserialize_with)] and a field {} marked with #[serde(skip_deserializing)]",
|
||||||
and a field {} marked with #[serde(skip_deserializing)]",
|
|
||||||
variant.ident, member
|
variant.ident, member
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -251,13 +246,13 @@ fn check_variant_skip_attrs(cx: &Ctxt, cont: &Container) {
|
|||||||
/// duplicate keys in the serialized output and/or ambiguity in
|
/// duplicate keys in the serialized output and/or ambiguity in
|
||||||
/// the to-be-deserialized input.
|
/// the to-be-deserialized input.
|
||||||
fn check_internal_tag_field_name_conflict(cx: &Ctxt, cont: &Container) {
|
fn check_internal_tag_field_name_conflict(cx: &Ctxt, cont: &Container) {
|
||||||
let variants = match cont.data {
|
let variants = match &cont.data {
|
||||||
Data::Enum(ref variants) => variants,
|
Data::Enum(variants) => variants,
|
||||||
Data::Struct(_, _) => return,
|
Data::Struct(_, _) => return,
|
||||||
};
|
};
|
||||||
|
|
||||||
let tag = match *cont.attrs.tag() {
|
let tag = match cont.attrs.tag() {
|
||||||
TagType::Internal { ref tag } => tag.as_str(),
|
TagType::Internal { tag } => tag.as_str(),
|
||||||
TagType::External | TagType::Adjacent { .. } | TagType::None => return,
|
TagType::External | TagType::Adjacent { .. } | TagType::None => return,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -298,11 +293,8 @@ fn check_internal_tag_field_name_conflict(cx: &Ctxt, cont: &Container) {
|
|||||||
/// In the case of adjacently-tagged enums, the type and the
|
/// In the case of adjacently-tagged enums, the type and the
|
||||||
/// contents tag must differ, for the same reason.
|
/// contents tag must differ, for the same reason.
|
||||||
fn check_adjacent_tag_conflict(cx: &Ctxt, cont: &Container) {
|
fn check_adjacent_tag_conflict(cx: &Ctxt, cont: &Container) {
|
||||||
let (type_tag, content_tag) = match *cont.attrs.tag() {
|
let (type_tag, content_tag) = match cont.attrs.tag() {
|
||||||
TagType::Adjacent {
|
TagType::Adjacent { tag, content } => (tag, content),
|
||||||
ref tag,
|
|
||||||
ref content,
|
|
||||||
} => (tag, content),
|
|
||||||
TagType::Internal { .. } | TagType::External | TagType::None => return,
|
TagType::Internal { .. } | TagType::External | TagType::None => return,
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -330,6 +322,13 @@ fn check_transparent(cx: &Ctxt, cont: &mut Container, derive: Derive) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if cont.attrs.type_try_from().is_some() {
|
||||||
|
cx.error_spanned_by(
|
||||||
|
cont.original,
|
||||||
|
"#[serde(transparent)] is not allowed with #[serde(try_from = \"...\")]",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if cont.attrs.type_into().is_some() {
|
if cont.attrs.type_into().is_some() {
|
||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
cont.original,
|
cont.original,
|
||||||
@@ -337,7 +336,7 @@ fn check_transparent(cx: &Ctxt, cont: &mut Container, derive: Derive) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
let fields = match cont.data {
|
let fields = match &mut cont.data {
|
||||||
Data::Enum(_) => {
|
Data::Enum(_) => {
|
||||||
cx.error_spanned_by(
|
cx.error_spanned_by(
|
||||||
cont.original,
|
cont.original,
|
||||||
@@ -352,7 +351,7 @@ fn check_transparent(cx: &Ctxt, cont: &mut Container, derive: Derive) {
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Data::Struct(_, ref mut fields) => fields,
|
Data::Struct(_, fields) => fields,
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut transparent_field = None;
|
let mut transparent_field = None;
|
||||||
@@ -390,16 +389,16 @@ fn check_transparent(cx: &Ctxt, cont: &mut Container, derive: Derive) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn member_message(member: &Member) -> String {
|
fn member_message(member: &Member) -> String {
|
||||||
match *member {
|
match member {
|
||||||
Member::Named(ref ident) => format!("`{}`", ident),
|
Member::Named(ident) => format!("`{}`", ident),
|
||||||
Member::Unnamed(ref i) => format!("#{}", i.index),
|
Member::Unnamed(i) => format!("#{}", i.index),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn allow_transparent(field: &Field, derive: Derive) -> bool {
|
fn allow_transparent(field: &Field, derive: Derive) -> bool {
|
||||||
if let Type::Path(ref ty) = *field.ty {
|
if let Type::Path(ty) = field.ty {
|
||||||
if let Some(seg) = ty.path.segments.last() {
|
if let Some(seg) = ty.path.segments.last() {
|
||||||
if seg.into_value().ident == "PhantomData" {
|
if seg.ident == "PhantomData" {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -410,3 +409,12 @@ fn allow_transparent(field: &Field, derive: Derive) -> bool {
|
|||||||
Derive::Deserialize => !field.attrs.skip_deserializing() && field.attrs.default().is_none(),
|
Derive::Deserialize => !field.attrs.skip_deserializing() && field.attrs.default().is_none(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn check_from_and_try_from(cx: &Ctxt, cont: &mut Container) {
|
||||||
|
if cont.attrs.type_from().is_some() && cont.attrs.type_try_from().is_some() {
|
||||||
|
cx.error_spanned_by(
|
||||||
|
cont.original,
|
||||||
|
"#[serde(from = \"...\")] and #[serde(try_from = \"...\")] conflict with each other",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -38,6 +38,11 @@ impl Ctxt {
|
|||||||
.push(syn::Error::new_spanned(obj.into_token_stream(), msg));
|
.push(syn::Error::new_spanned(obj.into_token_stream(), msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Add one of Syn's parse errors.
|
||||||
|
pub fn syn_error(&self, err: syn::Error) {
|
||||||
|
self.errors.borrow_mut().as_mut().unwrap().push(err);
|
||||||
|
}
|
||||||
|
|
||||||
/// Consume this object, producing a formatted error string if there are errors.
|
/// Consume this object, producing a formatted error string if there are errors.
|
||||||
pub fn check(self) -> Result<(), Vec<syn::Error>> {
|
pub fn check(self) -> Result<(), Vec<syn::Error>> {
|
||||||
let errors = self.errors.borrow_mut().take().unwrap();
|
let errors = self.errors.borrow_mut().take().unwrap();
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ pub use self::ctxt::Ctxt;
|
|||||||
|
|
||||||
mod case;
|
mod case;
|
||||||
mod check;
|
mod check;
|
||||||
|
mod symbol;
|
||||||
|
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
pub enum Derive {
|
pub enum Derive {
|
||||||
|
|||||||
@@ -0,0 +1,67 @@
|
|||||||
|
use std::fmt::{self, Display};
|
||||||
|
use syn::{Ident, Path};
|
||||||
|
|
||||||
|
#[derive(Copy, Clone)]
|
||||||
|
pub struct Symbol(&'static str);
|
||||||
|
|
||||||
|
pub const ALIAS: Symbol = Symbol("alias");
|
||||||
|
pub const BORROW: Symbol = Symbol("borrow");
|
||||||
|
pub const BOUND: Symbol = Symbol("bound");
|
||||||
|
pub const CONTENT: Symbol = Symbol("content");
|
||||||
|
pub const CRATE: Symbol = Symbol("crate");
|
||||||
|
pub const DEFAULT: Symbol = Symbol("default");
|
||||||
|
pub const DENY_UNKNOWN_FIELDS: Symbol = Symbol("deny_unknown_fields");
|
||||||
|
pub const DESERIALIZE: Symbol = Symbol("deserialize");
|
||||||
|
pub const DESERIALIZE_WITH: Symbol = Symbol("deserialize_with");
|
||||||
|
pub const FIELD_IDENTIFIER: Symbol = Symbol("field_identifier");
|
||||||
|
pub const FLATTEN: Symbol = Symbol("flatten");
|
||||||
|
pub const FROM: Symbol = Symbol("from");
|
||||||
|
pub const GETTER: Symbol = Symbol("getter");
|
||||||
|
pub const INTO: Symbol = Symbol("into");
|
||||||
|
pub const OTHER: Symbol = Symbol("other");
|
||||||
|
pub const REMOTE: Symbol = Symbol("remote");
|
||||||
|
pub const RENAME: Symbol = Symbol("rename");
|
||||||
|
pub const RENAME_ALL: Symbol = Symbol("rename_all");
|
||||||
|
pub const SERDE: Symbol = Symbol("serde");
|
||||||
|
pub const SERIALIZE: Symbol = Symbol("serialize");
|
||||||
|
pub const SERIALIZE_WITH: Symbol = Symbol("serialize_with");
|
||||||
|
pub const SKIP: Symbol = Symbol("skip");
|
||||||
|
pub const SKIP_DESERIALIZING: Symbol = Symbol("skip_deserializing");
|
||||||
|
pub const SKIP_SERIALIZING: Symbol = Symbol("skip_serializing");
|
||||||
|
pub const SKIP_SERIALIZING_IF: Symbol = Symbol("skip_serializing_if");
|
||||||
|
pub const TAG: Symbol = Symbol("tag");
|
||||||
|
pub const TRANSPARENT: Symbol = Symbol("transparent");
|
||||||
|
pub const TRY_FROM: Symbol = Symbol("try_from");
|
||||||
|
pub const UNTAGGED: Symbol = Symbol("untagged");
|
||||||
|
pub const VARIANT_IDENTIFIER: Symbol = Symbol("variant_identifier");
|
||||||
|
pub const WITH: Symbol = Symbol("with");
|
||||||
|
|
||||||
|
impl PartialEq<Symbol> for Ident {
|
||||||
|
fn eq(&self, word: &Symbol) -> bool {
|
||||||
|
self == word.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> PartialEq<Symbol> for &'a Ident {
|
||||||
|
fn eq(&self, word: &Symbol) -> bool {
|
||||||
|
*self == word.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PartialEq<Symbol> for Path {
|
||||||
|
fn eq(&self, word: &Symbol) -> bool {
|
||||||
|
self.is_ident(word.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a> PartialEq<Symbol> for &'a Path {
|
||||||
|
fn eq(&self, word: &Symbol) -> bool {
|
||||||
|
self.is_ident(word.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Display for Symbol {
|
||||||
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
||||||
|
formatter.write_str(self.0)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
//!
|
//!
|
||||||
//! [https://serde.rs/derive.html]: https://serde.rs/derive.html
|
//! [https://serde.rs/derive.html]: https://serde.rs/derive.html
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.96")]
|
#![doc(html_root_url = "https://docs.rs/serde_derive/1.0.103")]
|
||||||
#![allow(unknown_lints, bare_trait_objects)]
|
#![allow(unknown_lints, bare_trait_objects)]
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
||||||
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
|
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
|
||||||
@@ -43,8 +43,10 @@
|
|||||||
items_after_statements,
|
items_after_statements,
|
||||||
match_same_arms,
|
match_same_arms,
|
||||||
module_name_repetitions,
|
module_name_repetitions,
|
||||||
|
must_use_candidate,
|
||||||
similar_names,
|
similar_names,
|
||||||
single_match_else,
|
single_match_else,
|
||||||
|
too_many_lines,
|
||||||
unseparated_literal_suffix,
|
unseparated_literal_suffix,
|
||||||
use_self,
|
use_self,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -52,8 +52,8 @@ fn pretend_fields_used(cont: &Container) -> TokenStream {
|
|||||||
let type_ident = &cont.ident;
|
let type_ident = &cont.ident;
|
||||||
let (_, ty_generics, _) = cont.generics.split_for_impl();
|
let (_, ty_generics, _) = cont.generics.split_for_impl();
|
||||||
|
|
||||||
let patterns = match cont.data {
|
let patterns = match &cont.data {
|
||||||
Data::Enum(ref variants) => variants
|
Data::Enum(variants) => variants
|
||||||
.iter()
|
.iter()
|
||||||
.filter_map(|variant| match variant.style {
|
.filter_map(|variant| match variant.style {
|
||||||
Style::Struct => {
|
Style::Struct => {
|
||||||
@@ -64,7 +64,7 @@ fn pretend_fields_used(cont: &Container) -> TokenStream {
|
|||||||
_ => None,
|
_ => None,
|
||||||
})
|
})
|
||||||
.collect::<Vec<_>>(),
|
.collect::<Vec<_>>(),
|
||||||
Data::Struct(Style::Struct, ref fields) => {
|
Data::Struct(Style::Struct, fields) => {
|
||||||
let pat = struct_pattern(fields);
|
let pat = struct_pattern(fields);
|
||||||
vec![quote!(#type_ident #pat)]
|
vec![quote!(#type_ident #pat)]
|
||||||
}
|
}
|
||||||
@@ -93,8 +93,8 @@ fn pretend_fields_used(cont: &Container) -> TokenStream {
|
|||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
fn pretend_variants_used(cont: &Container) -> TokenStream {
|
fn pretend_variants_used(cont: &Container) -> TokenStream {
|
||||||
let variants = match cont.data {
|
let variants = match &cont.data {
|
||||||
Data::Enum(ref variants) => variants,
|
Data::Enum(variants) => variants,
|
||||||
Data::Struct(_, _) => {
|
Data::Struct(_, _) => {
|
||||||
return quote!();
|
return quote!();
|
||||||
}
|
}
|
||||||
|
|||||||
+41
-47
@@ -16,7 +16,7 @@ pub fn expand_derive_serialize(input: &syn::DeriveInput) -> Result<TokenStream,
|
|||||||
None => return Err(ctxt.check().unwrap_err()),
|
None => return Err(ctxt.check().unwrap_err()),
|
||||||
};
|
};
|
||||||
precondition(&ctxt, &cont);
|
precondition(&ctxt, &cont);
|
||||||
try!(ctxt.check());
|
ctxt.check()?;
|
||||||
|
|
||||||
let ident = &cont.ident;
|
let ident = &cont.ident;
|
||||||
let params = Parameters::new(&cont);
|
let params = Parameters::new(&cont);
|
||||||
@@ -116,7 +116,7 @@ impl Parameters {
|
|||||||
/// Type name to use in error messages and `&'static str` arguments to
|
/// Type name to use in error messages and `&'static str` arguments to
|
||||||
/// various Serializer methods.
|
/// various Serializer methods.
|
||||||
fn type_name(&self) -> String {
|
fn type_name(&self) -> String {
|
||||||
self.this.segments.last().unwrap().value().ident.to_string()
|
self.this.segments.last().unwrap().ident.to_string()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -164,15 +164,13 @@ fn serialize_body(cont: &Container, params: &Parameters) -> Fragment {
|
|||||||
} else if let Some(type_into) = cont.attrs.type_into() {
|
} else if let Some(type_into) = cont.attrs.type_into() {
|
||||||
serialize_into(params, type_into)
|
serialize_into(params, type_into)
|
||||||
} else {
|
} else {
|
||||||
match cont.data {
|
match &cont.data {
|
||||||
Data::Enum(ref variants) => serialize_enum(params, variants, &cont.attrs),
|
Data::Enum(variants) => serialize_enum(params, variants, &cont.attrs),
|
||||||
Data::Struct(Style::Struct, ref fields) => {
|
Data::Struct(Style::Struct, fields) => serialize_struct(params, fields, &cont.attrs),
|
||||||
serialize_struct(params, fields, &cont.attrs)
|
Data::Struct(Style::Tuple, fields) => {
|
||||||
}
|
|
||||||
Data::Struct(Style::Tuple, ref fields) => {
|
|
||||||
serialize_tuple_struct(params, fields, &cont.attrs)
|
serialize_tuple_struct(params, fields, &cont.attrs)
|
||||||
}
|
}
|
||||||
Data::Struct(Style::Newtype, ref fields) => {
|
Data::Struct(Style::Newtype, fields) => {
|
||||||
serialize_newtype_struct(params, &fields[0], &cont.attrs)
|
serialize_newtype_struct(params, &fields[0], &cont.attrs)
|
||||||
}
|
}
|
||||||
Data::Struct(Style::Unit, _) => serialize_unit_struct(&cont.attrs),
|
Data::Struct(Style::Unit, _) => serialize_unit_struct(&cont.attrs),
|
||||||
@@ -181,8 +179,8 @@ fn serialize_body(cont: &Container, params: &Parameters) -> Fragment {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_transparent(cont: &Container, params: &Parameters) -> Fragment {
|
fn serialize_transparent(cont: &Container, params: &Parameters) -> Fragment {
|
||||||
let fields = match cont.data {
|
let fields = match &cont.data {
|
||||||
Data::Struct(_, ref fields) => fields,
|
Data::Struct(_, fields) => fields,
|
||||||
Data::Enum(_) => unreachable!(),
|
Data::Enum(_) => unreachable!(),
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -259,7 +257,7 @@ fn serialize_tuple_struct(
|
|||||||
let mut serialized_fields = fields
|
let mut serialized_fields = fields
|
||||||
.iter()
|
.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.filter(|&(_, ref field)| !field.attrs.skip_serializing())
|
.filter(|(_, field)| !field.attrs.skip_serializing())
|
||||||
.peekable();
|
.peekable();
|
||||||
|
|
||||||
let let_mut = mut_if(serialized_fields.peek().is_some());
|
let let_mut = mut_if(serialized_fields.peek().is_some());
|
||||||
@@ -296,8 +294,8 @@ fn serialize_struct(params: &Parameters, fields: &[Field], cattrs: &attr::Contai
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_struct_tag_field(cattrs: &attr::Container, struct_trait: &StructTrait) -> TokenStream {
|
fn serialize_struct_tag_field(cattrs: &attr::Container, struct_trait: &StructTrait) -> TokenStream {
|
||||||
match *cattrs.tag() {
|
match cattrs.tag() {
|
||||||
attr::TagType::Internal { ref tag } => {
|
attr::TagType::Internal { tag } => {
|
||||||
let type_name = cattrs.name().serialize_name();
|
let type_name = cattrs.name().serialize_name();
|
||||||
let func = struct_trait.serialize_field(Span::call_site());
|
let func = struct_trait.serialize_field(Span::call_site());
|
||||||
quote! {
|
quote! {
|
||||||
@@ -467,17 +465,16 @@ fn serialize_variant(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let body = Match(match *cattrs.tag() {
|
let body = Match(match cattrs.tag() {
|
||||||
attr::TagType::External => {
|
attr::TagType::External => {
|
||||||
serialize_externally_tagged_variant(params, variant, variant_index, cattrs)
|
serialize_externally_tagged_variant(params, variant, variant_index, cattrs)
|
||||||
}
|
}
|
||||||
attr::TagType::Internal { ref tag } => {
|
attr::TagType::Internal { tag } => {
|
||||||
serialize_internally_tagged_variant(params, variant, cattrs, tag)
|
serialize_internally_tagged_variant(params, variant, cattrs, tag)
|
||||||
}
|
}
|
||||||
attr::TagType::Adjacent {
|
attr::TagType::Adjacent { tag, content } => {
|
||||||
ref tag,
|
serialize_adjacently_tagged_variant(params, variant, cattrs, tag, content)
|
||||||
ref content,
|
}
|
||||||
} => serialize_adjacently_tagged_variant(params, variant, cattrs, tag, content),
|
|
||||||
attr::TagType::None => serialize_untagged_variant(params, variant, cattrs),
|
attr::TagType::None => serialize_untagged_variant(params, variant, cattrs),
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -509,7 +506,7 @@ fn serialize_externally_tagged_variant(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
match variant.style {
|
match effective_style(variant) {
|
||||||
Style::Unit => {
|
Style::Unit => {
|
||||||
quote_expr! {
|
quote_expr! {
|
||||||
_serde::Serializer::serialize_unit_variant(
|
_serde::Serializer::serialize_unit_variant(
|
||||||
@@ -586,7 +583,7 @@ fn serialize_internally_tagged_variant(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
match variant.style {
|
match effective_style(variant) {
|
||||||
Style::Unit => {
|
Style::Unit => {
|
||||||
quote_block! {
|
quote_block! {
|
||||||
let mut __struct = try!(_serde::Serializer::serialize_struct(
|
let mut __struct = try!(_serde::Serializer::serialize_struct(
|
||||||
@@ -646,7 +643,7 @@ fn serialize_adjacently_tagged_variant(
|
|||||||
_serde::Serialize::serialize(#ser, __serializer)
|
_serde::Serialize::serialize(#ser, __serializer)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
match variant.style {
|
match effective_style(variant) {
|
||||||
Style::Unit => {
|
Style::Unit => {
|
||||||
return quote_block! {
|
return quote_block! {
|
||||||
let mut __struct = try!(_serde::Serializer::serialize_struct(
|
let mut __struct = try!(_serde::Serializer::serialize_struct(
|
||||||
@@ -723,6 +720,8 @@ fn serialize_adjacently_tagged_variant(
|
|||||||
where
|
where
|
||||||
__S: _serde::Serializer,
|
__S: _serde::Serializer,
|
||||||
{
|
{
|
||||||
|
// Elements that have skip_serializing will be unused.
|
||||||
|
#[allow(unused_variables)]
|
||||||
let (#(#fields_ident,)*) = self.data;
|
let (#(#fields_ident,)*) = self.data;
|
||||||
#inner
|
#inner
|
||||||
}
|
}
|
||||||
@@ -753,7 +752,7 @@ fn serialize_untagged_variant(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
match variant.style {
|
match effective_style(variant) {
|
||||||
Style::Unit => {
|
Style::Unit => {
|
||||||
quote_expr! {
|
quote_expr! {
|
||||||
_serde::Serializer::serialize_unit(__serializer)
|
_serde::Serializer::serialize_unit(__serializer)
|
||||||
@@ -804,7 +803,7 @@ fn serialize_tuple_variant(
|
|||||||
let mut serialized_fields = fields
|
let mut serialized_fields = fields
|
||||||
.iter()
|
.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.filter(|&(_, ref field)| !field.attrs.skip_serializing())
|
.filter(|(_, field)| !field.attrs.skip_serializing())
|
||||||
.peekable();
|
.peekable();
|
||||||
|
|
||||||
let let_mut = mut_if(serialized_fields.peek().is_some());
|
let let_mut = mut_if(serialized_fields.peek().is_some());
|
||||||
@@ -1039,7 +1038,7 @@ fn serialize_tuple_struct_visitor(
|
|||||||
fields
|
fields
|
||||||
.iter()
|
.iter()
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.filter(|&(_, ref field)| !field.attrs.skip_serializing())
|
.filter(|(_, field)| !field.attrs.skip_serializing())
|
||||||
.map(|(i, field)| {
|
.map(|(i, field)| {
|
||||||
let mut field_expr = if is_enum {
|
let mut field_expr = if is_enum {
|
||||||
let id = Ident::new(&format!("__field{}", i), Span::call_site());
|
let id = Ident::new(&format!("__field{}", i), Span::call_site());
|
||||||
@@ -1163,9 +1162,9 @@ fn wrap_serialize_variant_with(
|
|||||||
.fields
|
.fields
|
||||||
.iter()
|
.iter()
|
||||||
.map(|field| {
|
.map(|field| {
|
||||||
let id = match field.member {
|
let id = match &field.member {
|
||||||
Member::Named(ref ident) => ident.clone(),
|
Member::Named(ident) => ident.clone(),
|
||||||
Member::Unnamed(ref member) => {
|
Member::Unnamed(member) => {
|
||||||
Ident::new(&format!("__field{}", member.index), Span::call_site())
|
Ident::new(&format!("__field{}", member.index), Span::call_site())
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -1258,6 +1257,13 @@ fn get_member(params: &Parameters, field: &Field, member: &Member) -> TokenStrea
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn effective_style(variant: &Variant) -> Style {
|
||||||
|
match variant.style {
|
||||||
|
Style::Newtype if variant.fields[0].attrs.skip_serializing() => Style::Unit,
|
||||||
|
other => other,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enum StructTrait {
|
enum StructTrait {
|
||||||
SerializeMap,
|
SerializeMap,
|
||||||
SerializeStruct,
|
SerializeStruct,
|
||||||
@@ -1267,15 +1273,9 @@ enum StructTrait {
|
|||||||
impl StructTrait {
|
impl StructTrait {
|
||||||
fn serialize_field(&self, span: Span) -> TokenStream {
|
fn serialize_field(&self, span: Span) -> TokenStream {
|
||||||
match *self {
|
match *self {
|
||||||
StructTrait::SerializeMap => {
|
StructTrait::SerializeMap => quote_spanned!(span=> _serde::ser::SerializeMap::serialize_entry),
|
||||||
quote_spanned!(span=> _serde::ser::SerializeMap::serialize_entry)
|
StructTrait::SerializeStruct => quote_spanned!(span=> _serde::ser::SerializeStruct::serialize_field),
|
||||||
}
|
StructTrait::SerializeStructVariant => quote_spanned!(span=> _serde::ser::SerializeStructVariant::serialize_field),
|
||||||
StructTrait::SerializeStruct => {
|
|
||||||
quote_spanned!(span=> _serde::ser::SerializeStruct::serialize_field)
|
|
||||||
}
|
|
||||||
StructTrait::SerializeStructVariant => {
|
|
||||||
quote_spanned!(span=> _serde::ser::SerializeStructVariant::serialize_field)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1301,15 +1301,9 @@ enum TupleTrait {
|
|||||||
impl TupleTrait {
|
impl TupleTrait {
|
||||||
fn serialize_element(&self, span: Span) -> TokenStream {
|
fn serialize_element(&self, span: Span) -> TokenStream {
|
||||||
match *self {
|
match *self {
|
||||||
TupleTrait::SerializeTuple => {
|
TupleTrait::SerializeTuple => quote_spanned!(span=> _serde::ser::SerializeTuple::serialize_element),
|
||||||
quote_spanned!(span=> _serde::ser::SerializeTuple::serialize_element)
|
TupleTrait::SerializeTupleStruct => quote_spanned!(span=> _serde::ser::SerializeTupleStruct::serialize_field),
|
||||||
}
|
TupleTrait::SerializeTupleVariant => quote_spanned!(span=> _serde::ser::SerializeTupleVariant::serialize_field),
|
||||||
TupleTrait::SerializeTupleStruct => {
|
|
||||||
quote_spanned!(span=> _serde::ser::SerializeTupleStruct::serialize_field)
|
|
||||||
}
|
|
||||||
TupleTrait::SerializeTupleVariant => {
|
|
||||||
quote_spanned!(span=> _serde::ser::SerializeTupleVariant::serialize_field)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_derive_internals"
|
name = "serde_derive_internals"
|
||||||
version = "0.24.1" # remember to update html_root_url
|
version = "0.25.0" # remember to update html_root_url
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "AST representation used by Serde derive macros. Unstable."
|
description = "AST representation used by Serde derive macros. Unstable."
|
||||||
@@ -14,9 +14,9 @@ include = ["Cargo.toml", "lib.rs", "src/**/*.rs", "LICENSE-APACHE", "LICENSE-MIT
|
|||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "0.4"
|
proc-macro2 = "1.0"
|
||||||
quote = "0.6.3"
|
quote = "1.0"
|
||||||
syn = { version = "0.15", default-features = false, features = ["derive", "parsing", "printing", "clone-impls"] }
|
syn = { version = "1.0", default-features = false, features = ["derive", "parsing", "printing", "clone-impls"] }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
travis-ci = { repository = "serde-rs/serde" }
|
travis-ci = { repository = "serde-rs/serde" }
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.24.1")]
|
#![doc(html_root_url = "https://docs.rs/serde_derive_internals/0.25.0")]
|
||||||
#![allow(unknown_lints, bare_trait_objects)]
|
#![allow(unknown_lints, bare_trait_objects)]
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "serde_test"
|
name = "serde_test"
|
||||||
version = "1.0.96" # remember to update html_root_url
|
version = "1.0.103" # remember to update html_root_url
|
||||||
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Token De/Serializer for testing De/Serialize implementations"
|
description = "Token De/Serializer for testing De/Serialize implementations"
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ use std::fmt::Debug;
|
|||||||
/// # use serde::{Serialize, Deserialize};
|
/// # use serde::{Serialize, Deserialize};
|
||||||
/// # use serde_test::{assert_tokens, Token};
|
/// # use serde_test::{assert_tokens, Token};
|
||||||
/// #
|
/// #
|
||||||
/// # fn main() {
|
|
||||||
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
||||||
/// struct S {
|
/// struct S {
|
||||||
/// a: u8,
|
/// a: u8,
|
||||||
@@ -28,7 +27,6 @@ use std::fmt::Debug;
|
|||||||
/// Token::U8(0),
|
/// Token::U8(0),
|
||||||
/// Token::StructEnd,
|
/// Token::StructEnd,
|
||||||
/// ]);
|
/// ]);
|
||||||
/// # }
|
|
||||||
/// ```
|
/// ```
|
||||||
pub fn assert_tokens<'de, T>(value: &T, tokens: &'de [Token])
|
pub fn assert_tokens<'de, T>(value: &T, tokens: &'de [Token])
|
||||||
where
|
where
|
||||||
@@ -44,7 +42,6 @@ where
|
|||||||
/// # use serde::{Serialize, Deserialize};
|
/// # use serde::{Serialize, Deserialize};
|
||||||
/// # use serde_test::{assert_ser_tokens, Token};
|
/// # use serde_test::{assert_ser_tokens, Token};
|
||||||
/// #
|
/// #
|
||||||
/// # fn main() {
|
|
||||||
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
||||||
/// struct S {
|
/// struct S {
|
||||||
/// a: u8,
|
/// a: u8,
|
||||||
@@ -60,7 +57,6 @@ where
|
|||||||
/// Token::U8(0),
|
/// Token::U8(0),
|
||||||
/// Token::StructEnd,
|
/// Token::StructEnd,
|
||||||
/// ]);
|
/// ]);
|
||||||
/// # }
|
|
||||||
/// ```
|
/// ```
|
||||||
pub fn assert_ser_tokens<T>(value: &T, tokens: &[Token])
|
pub fn assert_ser_tokens<T>(value: &T, tokens: &[Token])
|
||||||
where
|
where
|
||||||
@@ -135,7 +131,6 @@ where
|
|||||||
/// # use serde::{Serialize, Deserialize};
|
/// # use serde::{Serialize, Deserialize};
|
||||||
/// # use serde_test::{assert_de_tokens, Token};
|
/// # use serde_test::{assert_de_tokens, Token};
|
||||||
/// #
|
/// #
|
||||||
/// # fn main() {
|
|
||||||
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
||||||
/// struct S {
|
/// struct S {
|
||||||
/// a: u8,
|
/// a: u8,
|
||||||
@@ -151,7 +146,6 @@ where
|
|||||||
/// Token::U8(0),
|
/// Token::U8(0),
|
||||||
/// Token::StructEnd,
|
/// Token::StructEnd,
|
||||||
/// ]);
|
/// ]);
|
||||||
/// # }
|
|
||||||
/// ```
|
/// ```
|
||||||
pub fn assert_de_tokens<'de, T>(value: &T, tokens: &'de [Token])
|
pub fn assert_de_tokens<'de, T>(value: &T, tokens: &'de [Token])
|
||||||
where
|
where
|
||||||
@@ -190,7 +184,6 @@ where
|
|||||||
/// # use serde::{Serialize, Deserialize};
|
/// # use serde::{Serialize, Deserialize};
|
||||||
/// # use serde_test::{assert_de_tokens_error, Token};
|
/// # use serde_test::{assert_de_tokens_error, Token};
|
||||||
/// #
|
/// #
|
||||||
/// # fn main() {
|
|
||||||
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
/// #[derive(Serialize, Deserialize, PartialEq, Debug)]
|
||||||
/// #[serde(deny_unknown_fields)]
|
/// #[serde(deny_unknown_fields)]
|
||||||
/// struct S {
|
/// struct S {
|
||||||
@@ -205,7 +198,6 @@ where
|
|||||||
/// ],
|
/// ],
|
||||||
/// "unknown field `x`, expected `a` or `b`",
|
/// "unknown field `x`, expected `a` or `b`",
|
||||||
/// );
|
/// );
|
||||||
/// # }
|
|
||||||
/// ```
|
/// ```
|
||||||
pub fn assert_de_tokens_error<'de, T>(tokens: &'de [Token], error: &str)
|
pub fn assert_de_tokens_error<'de, T>(tokens: &'de [Token], error: &str)
|
||||||
where
|
where
|
||||||
|
|||||||
@@ -89,11 +89,11 @@ impl<'de> Deserializer<'de> {
|
|||||||
where
|
where
|
||||||
V: Visitor<'de>,
|
V: Visitor<'de>,
|
||||||
{
|
{
|
||||||
let value = try!(visitor.visit_seq(DeserializerSeqVisitor {
|
let value = visitor.visit_seq(DeserializerSeqVisitor {
|
||||||
de: self,
|
de: self,
|
||||||
len: len,
|
len: len,
|
||||||
end: end,
|
end: end,
|
||||||
},));
|
})?;
|
||||||
assert_next_token!(self, end);
|
assert_next_token!(self, end);
|
||||||
Ok(value)
|
Ok(value)
|
||||||
}
|
}
|
||||||
@@ -107,11 +107,11 @@ impl<'de> Deserializer<'de> {
|
|||||||
where
|
where
|
||||||
V: Visitor<'de>,
|
V: Visitor<'de>,
|
||||||
{
|
{
|
||||||
let value = try!(visitor.visit_map(DeserializerMapVisitor {
|
let value = visitor.visit_map(DeserializerMapVisitor {
|
||||||
de: self,
|
de: self,
|
||||||
len: len,
|
len: len,
|
||||||
end: end,
|
end: end,
|
||||||
},));
|
})?;
|
||||||
assert_next_token!(self, end);
|
assert_next_token!(self, end);
|
||||||
Ok(value)
|
Ok(value)
|
||||||
}
|
}
|
||||||
@@ -456,11 +456,11 @@ impl<'de, 'a> EnumAccess<'de> for DeserializerEnumVisitor<'a, 'de> {
|
|||||||
| Token::TupleVariant { variant: v, .. }
|
| Token::TupleVariant { variant: v, .. }
|
||||||
| Token::StructVariant { variant: v, .. } => {
|
| Token::StructVariant { variant: v, .. } => {
|
||||||
let de = v.into_deserializer();
|
let de = v.into_deserializer();
|
||||||
let value = try!(seed.deserialize(de));
|
let value = seed.deserialize(de)?;
|
||||||
Ok((value, self))
|
Ok((value, self))
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
let value = try!(seed.deserialize(&mut *self.de));
|
let value = seed.deserialize(&mut *self.de)?;
|
||||||
Ok((value, self))
|
Ok((value, self))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -613,7 +613,7 @@ impl<'de, 'a> MapAccess<'de> for EnumMapVisitor<'a, 'de> {
|
|||||||
len: None,
|
len: None,
|
||||||
end: Token::TupleVariantEnd,
|
end: Token::TupleVariantEnd,
|
||||||
};
|
};
|
||||||
try!(seed.deserialize(SeqAccessDeserializer::new(visitor)))
|
seed.deserialize(SeqAccessDeserializer::new(visitor))?
|
||||||
};
|
};
|
||||||
assert_next_token!(self.de, Token::TupleVariantEnd);
|
assert_next_token!(self.de, Token::TupleVariantEnd);
|
||||||
Ok(value)
|
Ok(value)
|
||||||
@@ -625,7 +625,7 @@ impl<'de, 'a> MapAccess<'de> for EnumMapVisitor<'a, 'de> {
|
|||||||
len: None,
|
len: None,
|
||||||
end: Token::StructVariantEnd,
|
end: Token::StructVariantEnd,
|
||||||
};
|
};
|
||||||
try!(seed.deserialize(MapAccessDeserializer::new(visitor)))
|
seed.deserialize(MapAccessDeserializer::new(visitor))?
|
||||||
};
|
};
|
||||||
assert_next_token!(self.de, Token::StructVariantEnd);
|
assert_next_token!(self.de, Token::StructVariantEnd);
|
||||||
Ok(value)
|
Ok(value)
|
||||||
|
|||||||
@@ -144,11 +144,11 @@
|
|||||||
//! # }
|
//! # }
|
||||||
//! ```
|
//! ```
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.96")]
|
#![doc(html_root_url = "https://docs.rs/serde_test/1.0.103")]
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
#![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))]
|
||||||
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
|
#![cfg_attr(feature = "cargo-clippy", deny(clippy, clippy_pedantic))]
|
||||||
// Ignored clippy lints
|
// Ignored clippy lints
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(float_cmp))]
|
#![cfg_attr(feature = "cargo-clippy", allow(float_cmp, needless_doctest_main))]
|
||||||
// Ignored clippy_pedantic lints
|
// Ignored clippy_pedantic lints
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
feature = "cargo-clippy",
|
feature = "cargo-clippy",
|
||||||
@@ -156,6 +156,7 @@
|
|||||||
empty_line_after_outer_attr,
|
empty_line_after_outer_attr,
|
||||||
missing_docs_in_private_items,
|
missing_docs_in_private_items,
|
||||||
module_name_repetitions,
|
module_name_repetitions,
|
||||||
|
must_use_candidate,
|
||||||
redundant_field_names,
|
redundant_field_names,
|
||||||
use_debug,
|
use_debug,
|
||||||
use_self
|
use_self
|
||||||
|
|||||||
@@ -427,7 +427,7 @@ impl<'s, 'a> ser::SerializeStruct for &'s mut Serializer<'a> {
|
|||||||
where
|
where
|
||||||
T: Serialize,
|
T: Serialize,
|
||||||
{
|
{
|
||||||
try!(key.serialize(&mut **self));
|
key.serialize(&mut **self)?;
|
||||||
value.serialize(&mut **self)
|
value.serialize(&mut **self)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -449,7 +449,7 @@ impl<'s, 'a> ser::SerializeStructVariant for Variant<'s, 'a> {
|
|||||||
where
|
where
|
||||||
T: Serialize,
|
T: Serialize,
|
||||||
{
|
{
|
||||||
try!(key.serialize(&mut *self.ser));
|
key.serialize(&mut *self.ser)?;
|
||||||
value.serialize(&mut *self.ser)
|
value.serialize(&mut *self.ser)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ serde = { path = "../serde" }
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
fnv = "1.0"
|
fnv = "1.0"
|
||||||
rustc-serialize = "0.3.16"
|
|
||||||
rustversion = "0.1"
|
rustversion = "0.1"
|
||||||
serde = { path = "../serde", features = ["rc", "derive"] }
|
serde = { path = "../serde", features = ["rc", "derive"] }
|
||||||
serde_derive = { path = "../serde_derive", features = ["deserialize_in_place"] }
|
serde_derive = { path = "../serde_derive", features = ["deserialize_in_place"] }
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ use serde::de::{self, MapAccess, Unexpected, Visitor};
|
|||||||
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
||||||
|
|
||||||
use std::collections::{BTreeMap, HashMap};
|
use std::collections::{BTreeMap, HashMap};
|
||||||
|
use std::convert::TryFrom;
|
||||||
use std::fmt;
|
use std::fmt;
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
@@ -1588,14 +1589,35 @@ impl From<Option<u32>> for EnumToU32 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Clone, Deserialize, PartialEq, Debug)]
|
||||||
|
#[serde(try_from = "u32")]
|
||||||
|
enum TryFromU32 {
|
||||||
|
One,
|
||||||
|
Two,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl TryFrom<u32> for TryFromU32 {
|
||||||
|
type Error = String;
|
||||||
|
|
||||||
|
fn try_from(value: u32) -> Result<Self, Self::Error> {
|
||||||
|
match value {
|
||||||
|
1 => Ok(TryFromU32::One),
|
||||||
|
2 => Ok(TryFromU32::Two),
|
||||||
|
_ => Err("out of range".to_owned()),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_from_into_traits() {
|
fn test_from_into_traits() {
|
||||||
assert_ser_tokens::<EnumToU32>(&EnumToU32::One, &[Token::Some, Token::U32(1)]);
|
assert_ser_tokens(&EnumToU32::One, &[Token::Some, Token::U32(1)]);
|
||||||
assert_ser_tokens::<EnumToU32>(&EnumToU32::Nothing, &[Token::None]);
|
assert_ser_tokens(&EnumToU32::Nothing, &[Token::None]);
|
||||||
assert_de_tokens::<EnumToU32>(&EnumToU32::Two, &[Token::Some, Token::U32(2)]);
|
assert_de_tokens(&EnumToU32::Two, &[Token::Some, Token::U32(2)]);
|
||||||
assert_ser_tokens::<StructFromEnum>(&StructFromEnum(Some(5)), &[Token::None]);
|
assert_ser_tokens(&StructFromEnum(Some(5)), &[Token::None]);
|
||||||
assert_ser_tokens::<StructFromEnum>(&StructFromEnum(None), &[Token::None]);
|
assert_ser_tokens(&StructFromEnum(None), &[Token::None]);
|
||||||
assert_de_tokens::<StructFromEnum>(&StructFromEnum(Some(2)), &[Token::Some, Token::U32(2)]);
|
assert_de_tokens(&StructFromEnum(Some(2)), &[Token::Some, Token::U32(2)]);
|
||||||
|
assert_de_tokens(&TryFromU32::Two, &[Token::U32(2)]);
|
||||||
|
assert_de_tokens_error::<TryFromU32>(&[Token::U32(5)], "out of range");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#![allow(clippy::decimal_literal_representation, clippy::unreadable_literal)]
|
#![allow(clippy::decimal_literal_representation, clippy::unreadable_literal)]
|
||||||
#![cfg_attr(feature = "unstable", feature(never_type))]
|
|
||||||
|
|
||||||
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
|
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
|
||||||
use std::default::Default;
|
use std::default::Default;
|
||||||
@@ -104,6 +103,9 @@ struct StructSkipAllDenyUnknown {
|
|||||||
a: i32,
|
a: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Default, PartialEq, Debug)]
|
||||||
|
struct NotDeserializable;
|
||||||
|
|
||||||
#[derive(PartialEq, Debug, Deserialize)]
|
#[derive(PartialEq, Debug, Deserialize)]
|
||||||
enum Enum {
|
enum Enum {
|
||||||
#[allow(dead_code)]
|
#[allow(dead_code)]
|
||||||
@@ -117,6 +119,7 @@ enum Enum {
|
|||||||
b: i32,
|
b: i32,
|
||||||
c: i32,
|
c: i32,
|
||||||
},
|
},
|
||||||
|
SimpleWithSkipped(#[serde(skip_deserializing)] NotDeserializable),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(PartialEq, Debug, Deserialize)]
|
#[derive(PartialEq, Debug, Deserialize)]
|
||||||
@@ -728,6 +731,11 @@ declare_tests! {
|
|||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
test_enum_simple_with_skipped {
|
||||||
|
Enum::SimpleWithSkipped(NotDeserializable) => &[
|
||||||
|
Token::UnitVariant { name: "Enum", variant: "SimpleWithSkipped" },
|
||||||
|
],
|
||||||
|
}
|
||||||
test_enum_seq {
|
test_enum_seq {
|
||||||
Enum::Seq(1, 2, 3) => &[
|
Enum::Seq(1, 2, 3) => &[
|
||||||
Token::TupleVariant { name: "Enum", variant: "Seq", len: 3 },
|
Token::TupleVariant { name: "Enum", variant: "Seq", len: 3 },
|
||||||
@@ -880,11 +888,37 @@ declare_tests! {
|
|||||||
Path::new("/usr/local/lib") => &[
|
Path::new("/usr/local/lib") => &[
|
||||||
Token::BorrowedStr("/usr/local/lib"),
|
Token::BorrowedStr("/usr/local/lib"),
|
||||||
],
|
],
|
||||||
|
Path::new("/usr/local/lib") => &[
|
||||||
|
Token::BorrowedBytes(b"/usr/local/lib"),
|
||||||
|
],
|
||||||
}
|
}
|
||||||
test_path_buf {
|
test_path_buf {
|
||||||
|
PathBuf::from("/usr/local/lib") => &[
|
||||||
|
Token::Str("/usr/local/lib"),
|
||||||
|
],
|
||||||
PathBuf::from("/usr/local/lib") => &[
|
PathBuf::from("/usr/local/lib") => &[
|
||||||
Token::String("/usr/local/lib"),
|
Token::String("/usr/local/lib"),
|
||||||
],
|
],
|
||||||
|
PathBuf::from("/usr/local/lib") => &[
|
||||||
|
Token::Bytes(b"/usr/local/lib"),
|
||||||
|
],
|
||||||
|
PathBuf::from("/usr/local/lib") => &[
|
||||||
|
Token::ByteBuf(b"/usr/local/lib"),
|
||||||
|
],
|
||||||
|
}
|
||||||
|
test_boxed_path {
|
||||||
|
PathBuf::from("/usr/local/lib").into_boxed_path() => &[
|
||||||
|
Token::Str("/usr/local/lib"),
|
||||||
|
],
|
||||||
|
PathBuf::from("/usr/local/lib").into_boxed_path() => &[
|
||||||
|
Token::String("/usr/local/lib"),
|
||||||
|
],
|
||||||
|
PathBuf::from("/usr/local/lib").into_boxed_path() => &[
|
||||||
|
Token::Bytes(b"/usr/local/lib"),
|
||||||
|
],
|
||||||
|
PathBuf::from("/usr/local/lib").into_boxed_path() => &[
|
||||||
|
Token::ByteBuf(b"/usr/local/lib"),
|
||||||
|
],
|
||||||
}
|
}
|
||||||
test_cstring {
|
test_cstring {
|
||||||
CString::new("abc").unwrap() => &[
|
CString::new("abc").unwrap() => &[
|
||||||
@@ -1217,13 +1251,13 @@ declare_error_tests! {
|
|||||||
&[
|
&[
|
||||||
Token::UnitVariant { name: "Enum", variant: "Foo" },
|
Token::UnitVariant { name: "Enum", variant: "Foo" },
|
||||||
],
|
],
|
||||||
"unknown variant `Foo`, expected one of `Unit`, `Simple`, `Seq`, `Map`",
|
"unknown variant `Foo`, expected one of `Unit`, `Simple`, `Seq`, `Map`, `SimpleWithSkipped`",
|
||||||
}
|
}
|
||||||
test_enum_skipped_variant<Enum> {
|
test_enum_skipped_variant<Enum> {
|
||||||
&[
|
&[
|
||||||
Token::UnitVariant { name: "Enum", variant: "Skipped" },
|
Token::UnitVariant { name: "Enum", variant: "Skipped" },
|
||||||
],
|
],
|
||||||
"unknown variant `Skipped`, expected one of `Unit`, `Simple`, `Seq`, `Map`",
|
"unknown variant `Skipped`, expected one of `Unit`, `Simple`, `Seq`, `Map`, `SimpleWithSkipped`",
|
||||||
}
|
}
|
||||||
test_enum_skip_all<EnumSkipAll> {
|
test_enum_skip_all<EnumSkipAll> {
|
||||||
&[
|
&[
|
||||||
@@ -1254,10 +1288,10 @@ declare_error_tests! {
|
|||||||
test_enum_out_of_range<Enum> {
|
test_enum_out_of_range<Enum> {
|
||||||
&[
|
&[
|
||||||
Token::Enum { name: "Enum" },
|
Token::Enum { name: "Enum" },
|
||||||
Token::U32(4),
|
Token::U32(5),
|
||||||
Token::Unit,
|
Token::Unit,
|
||||||
],
|
],
|
||||||
"invalid value: integer `4`, expected variant index 0 <= i < 4",
|
"invalid value: integer `5`, expected variant index 0 <= i < 5",
|
||||||
}
|
}
|
||||||
test_short_tuple<(u8, u8, u8)> {
|
test_short_tuple<(u8, u8, u8)> {
|
||||||
&[
|
&[
|
||||||
|
|||||||
@@ -637,7 +637,10 @@ fn test_untagged_enum() {
|
|||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Serializes to unit, deserializes from either depending on format's
|
||||||
|
// preference.
|
||||||
assert_tokens(&Untagged::C, &[Token::Unit]);
|
assert_tokens(&Untagged::C, &[Token::Unit]);
|
||||||
|
assert_de_tokens(&Untagged::C, &[Token::None]);
|
||||||
|
|
||||||
assert_tokens(&Untagged::D(4), &[Token::U8(4)]);
|
assert_tokens(&Untagged::D(4), &[Token::U8(4)]);
|
||||||
assert_tokens(&Untagged::E("e".to_owned()), &[Token::Str("e")]);
|
assert_tokens(&Untagged::E("e".to_owned()), &[Token::Str("e")]);
|
||||||
@@ -652,11 +655,6 @@ fn test_untagged_enum() {
|
|||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
|
||||||
assert_de_tokens_error::<Untagged>(
|
|
||||||
&[Token::None],
|
|
||||||
"data did not match any variant of untagged enum Untagged",
|
|
||||||
);
|
|
||||||
|
|
||||||
assert_de_tokens_error::<Untagged>(
|
assert_de_tokens_error::<Untagged>(
|
||||||
&[Token::Tuple { len: 1 }, Token::U8(1), Token::TupleEnd],
|
&[Token::Tuple { len: 1 }, Token::U8(1), Token::TupleEnd],
|
||||||
"data did not match any variant of untagged enum Untagged",
|
"data did not match any variant of untagged enum Untagged",
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
#![allow(clippy::unreadable_literal)]
|
#![allow(clippy::unreadable_literal)]
|
||||||
#![cfg_attr(feature = "unstable", feature(never_type))]
|
|
||||||
|
|
||||||
use std::cell::RefCell;
|
use std::cell::RefCell;
|
||||||
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
|
use std::collections::{BTreeMap, BTreeSet, HashMap, HashSet};
|
||||||
@@ -44,6 +43,9 @@ struct Struct {
|
|||||||
c: i32,
|
c: i32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(PartialEq, Debug)]
|
||||||
|
struct NotSerializable;
|
||||||
|
|
||||||
#[derive(Serialize, PartialEq, Debug)]
|
#[derive(Serialize, PartialEq, Debug)]
|
||||||
enum Enum {
|
enum Enum {
|
||||||
Unit,
|
Unit,
|
||||||
@@ -64,6 +66,7 @@ enum Enum {
|
|||||||
_a: i32,
|
_a: i32,
|
||||||
_b: i32,
|
_b: i32,
|
||||||
},
|
},
|
||||||
|
OneWithSkipped(#[serde(skip_serializing)] NotSerializable),
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
@@ -309,8 +312,13 @@ declare_tests! {
|
|||||||
],
|
],
|
||||||
}
|
}
|
||||||
test_enum {
|
test_enum {
|
||||||
Enum::Unit => &[Token::UnitVariant { name: "Enum", variant: "Unit" }],
|
Enum::Unit => &[
|
||||||
Enum::One(42) => &[Token::NewtypeVariant { name: "Enum", variant: "One" }, Token::I32(42)],
|
Token::UnitVariant { name: "Enum", variant: "Unit" },
|
||||||
|
],
|
||||||
|
Enum::One(42) => &[
|
||||||
|
Token::NewtypeVariant { name: "Enum", variant: "One" },
|
||||||
|
Token::I32(42),
|
||||||
|
],
|
||||||
Enum::Seq(1, 2) => &[
|
Enum::Seq(1, 2) => &[
|
||||||
Token::TupleVariant { name: "Enum", variant: "Seq", len: 2 },
|
Token::TupleVariant { name: "Enum", variant: "Seq", len: 2 },
|
||||||
Token::I32(1),
|
Token::I32(1),
|
||||||
@@ -326,6 +334,9 @@ declare_tests! {
|
|||||||
Token::I32(2),
|
Token::I32(2),
|
||||||
Token::StructVariantEnd,
|
Token::StructVariantEnd,
|
||||||
],
|
],
|
||||||
|
Enum::OneWithSkipped(NotSerializable) => &[
|
||||||
|
Token::UnitVariant { name: "Enum", variant: "OneWithSkipped" },
|
||||||
|
],
|
||||||
}
|
}
|
||||||
test_box {
|
test_box {
|
||||||
Box::new(0i32) => &[Token::I32(0)],
|
Box::new(0i32) => &[Token::I32(0)],
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
use serde_derive::Serialize;
|
||||||
|
|
||||||
|
#[derive(Serialize)]
|
||||||
|
#[serde(from = "u64", try_from = "u64")]
|
||||||
|
struct S {
|
||||||
|
a: u8,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
error: #[serde(from = "...")] and #[serde(try_from = "...")] conflict with each other
|
||||||
|
--> $DIR/from-try-from.rs:4:1
|
||||||
|
|
|
||||||
|
4 | / #[serde(from = "u64", try_from = "u64")]
|
||||||
|
5 | | struct S {
|
||||||
|
6 | | a: u8,
|
||||||
|
7 | | }
|
||||||
|
| |_^
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
use serde_derive::Serialize;
|
||||||
|
|
||||||
|
#[derive(Serialize)]
|
||||||
|
#[serde(rename =)]
|
||||||
|
struct S;
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
error: unexpected end of input, expected literal
|
||||||
|
--> $DIR/cut_off.rs:4:17
|
||||||
|
|
|
||||||
|
4 | #[serde(rename =)]
|
||||||
|
| ^
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
use serde_derive::Serialize;
|
||||||
|
|
||||||
|
#[derive(Serialize)]
|
||||||
|
#[serde]
|
||||||
|
#[serde = "?"]
|
||||||
|
struct S;
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
error: expected #[serde(...)]
|
||||||
|
--> $DIR/not_list.rs:4:3
|
||||||
|
|
|
||||||
|
4 | #[serde]
|
||||||
|
| ^^^^^
|
||||||
|
|
||||||
|
error: expected #[serde(...)]
|
||||||
|
--> $DIR/not_list.rs:5:3
|
||||||
|
|
|
||||||
|
5 | #[serde = "?"]
|
||||||
|
| ^^^^^^^^^^^
|
||||||
@@ -2,7 +2,7 @@ error[E0609]: no field `b` on type `&remote::S`
|
|||||||
--> $DIR/unknown_field.rs:12:5
|
--> $DIR/unknown_field.rs:12:5
|
||||||
|
|
|
|
||||||
12 | b: u8,
|
12 | b: u8,
|
||||||
| ^
|
| ^ help: a field with a similar name exists: `a`
|
||||||
|
|
||||||
error[E0560]: struct `remote::S` has no field named `b`
|
error[E0560]: struct `remote::S` has no field named `b`
|
||||||
--> $DIR/unknown_field.rs:12:5
|
--> $DIR/unknown_field.rs:12:5
|
||||||
|
|||||||
@@ -2,6 +2,9 @@ error[E0308]: mismatched types
|
|||||||
--> $DIR/wrong_de.rs:7:10
|
--> $DIR/wrong_de.rs:7:10
|
||||||
|
|
|
|
||||||
7 | #[derive(Deserialize)]
|
7 | #[derive(Deserialize)]
|
||||||
| ^^^^^^^^^^^ expected u16, found u8
|
| ^^^^^^^^^^^
|
||||||
|
| |
|
||||||
|
| expected u16, found u8
|
||||||
|
| help: you can convert an `u8` to `u16`: `Deserialize.into()`
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0308`.
|
For more information about this error, try `rustc --explain E0308`.
|
||||||
|
|||||||
@@ -6,5 +6,3 @@ error[E0308]: mismatched types
|
|||||||
|
|
|
|
||||||
= note: expected type `&u8`
|
= note: expected type `&u8`
|
||||||
found type `&u16`
|
found type `&u16`
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0308`.
|
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
use serde_derive::Serialize;
|
||||||
|
|
||||||
|
#[derive(Serialize)]
|
||||||
|
#[serde(transparent, try_from = "u64")]
|
||||||
|
struct S {
|
||||||
|
a: u8,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
error: #[serde(transparent)] is not allowed with #[serde(try_from = "...")]
|
||||||
|
--> $DIR/with_try_from.rs:4:1
|
||||||
|
|
|
||||||
|
4 | / #[serde(transparent, try_from = "u64")]
|
||||||
|
5 | | struct S {
|
||||||
|
6 | | a: u8,
|
||||||
|
7 | | }
|
||||||
|
| |_^
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
use serde_derive::Deserialize;
|
||||||
|
|
||||||
|
#[derive(Deserialize)]
|
||||||
|
#[serde(try_from = "Option<T")]
|
||||||
|
enum TestOne {
|
||||||
|
Testing,
|
||||||
|
One,
|
||||||
|
Two,
|
||||||
|
Three,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
error: failed to parse type: try_from = "Option<T"
|
||||||
|
--> $DIR/try_from.rs:4:20
|
||||||
|
|
|
||||||
|
4 | #[serde(try_from = "Option<T")]
|
||||||
|
| ^^^^^^^^^^
|
||||||
Reference in New Issue
Block a user