派生 Serde 的序列化或反序列化强制泛型类型可序列化,尽管它不需要是

Deriving Serde's Serialize or Deserialize forces generic type to be serialisable although it does not need to be

我的类型 A 可以包含任何实现 trait Trait 的东西,它是可序列化的,尽管实现特征 Trait 的类型可能不是。在我的例子中,它不可能是——它是一个私有的非对称密钥:

extern crate serde;
#[macro_use]
extern crate serde_derive;

use serde::de::DeserializeOwned;
use serde::Serialize;

trait Trait {
    type SerialisableType: Clone + Serialize + DeserializeOwned;

    fn inner(&self) -> &Self::SerialisableType;
}

#[derive(Serialize, Deserialize)]
enum A<T: Trait> {
    Variant0(B<T>), // *** NOTE: Compiles if this is commented ***
    Variant1(T::SerialisableType),
}

#[derive(Serialize, Deserialize)]
struct B<T: Trait> {
    inner: T::SerialisableType,
}

// ==============================================

struct NonSerialisable {
    serialisable: Serialisable,
}

impl Trait for NonSerialisable {
    type SerialisableType = Serialisable;

    fn inner(&self) -> &Self::SerialisableType {
        &self.serialisable
    }
}

#[derive(Clone, Serialize, Deserialize)]
struct Serialisable(Vec<u8>);

#[derive(Serialize, Deserialize)]
enum E {
    Variant0(A<NonSerialisable>),
    Variant1(B<NonSerialisable>),
}

fn main() {}

playground

此错误为:

error[E0277]: the trait bound `NonSerialisable: serde::Serialize` is not satisfied
  --> src/main.rs:43:10
   |
43 | #[derive(Serialize, Deserialize)]
   |          ^^^^^^^^^ the trait `serde::Serialize` is not implemented for `NonSerialisable`
   |
   = note: required because of the requirements on the impl of `serde::Serialize` for `A<NonSerialisable>`
   = note: required by `serde::Serializer::serialize_newtype_variant`

error[E0277]: the trait bound `NonSerialisable: serde::Deserialize<'_>` is not satisfied
  --> src/main.rs:43:21
   |
43 | #[derive(Serialize, Deserialize)]
   |                     ^^^^^^^^^^^ the trait `serde::Deserialize<'_>` is not implemented for `NonSerialisable`
   |
   = note: required because of the requirements on the impl of `serde::Deserialize<'_>` for `A<NonSerialisable>`
   = note: required by `serde::de::VariantAccess::newtype_variant`

如果我注释掉 A::Variant0,如代码中的内联注释中所述,那么它可以正常编译。这让我认为编译器无法推断出 B<T> 是可序列化的,但它实际上能够推断出 E 是可序列化的,这需要 B也可以序列化。

问题出在哪里?

在宏扩展期间,编译器尚未确定 Variant0 中引用了哪个 BB 如何使用其类型参数。因此,宏扩展推断出适用于 B 最常见情况的特征边界,例如 BBoxVec。在这些情况下,序列化 B<T> 将需要 T: Serialize,而反序列化 B<T> 将需要 T: Deserialize<'de>.

您可以提供 handwritten generic type bounds 来替换推断的边界。

#[derive(Serialize, Deserialize)]
#[serde(bound = "")]
enum A<T: Trait> {
    Variant0(B<T>),
    Variant1(T::SerialisableType),
}