You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is sometimes necessary to have either phantom types or special bounds for types for the structs. serde supports supplying custom bounds on these types so that the derived instance has useful bounds, instead of requiring all type parameters to have the Serialize/Deserialize bounds.
Schemars does not use trait bounds from #[serde(bound)] attributes.
This is because in many cases, the bounds needed for De/Serialize would be different to the bounds needed for JsonSchema.
So in your case, you would need to add #[schemars(bound = "A: Sized")]
However, a nice enhancement would be to improve the automatically-generated bounds to be smarter, e.g. ignore PhantomData fields. This wouldn't be easy, but is certainly possible - and fortunately can mostly be done by copying what serde does 😄
It is sometimes necessary to have either phantom types or special bounds for types for the structs.
serde
supports supplying custom bounds on these types so that the derived instance has useful bounds, instead of requiring all type parameters to have theSerialize/Deserialize
bounds.It does not appear that
schemars
honors these.Concretely, I would like this to work
The text was updated successfully, but these errors were encountered: