- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 812
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support #[derive(Serialize, Deserialize)] when using associated types #1213
Conversation
serde_derive/src/bound.rs
Outdated
.flat_map(|field| { | ||
let field_ty = field.ty; | ||
let field_bound: Option<syn::WherePredicate> = match (field_ty, gen_bound_where(&field.attrs)) { | ||
(&syn::Type::Path(ref ty_path), true) => match (ty_path.path.segments.first(), generics.params.first()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make this work even if the associated type is not from the first generic parameter.
#[derive(Serialize, Deserialize)]
struct AssocDerive<S, T: AssocSerde> {
s: S,
assoc: T::Assoc,
}
serde_derive/src/bound.rs
Outdated
) -> syn::Generics | ||
where | ||
F: Fn(&attr::Field) -> Option<&[syn::WherePredicate]>, | ||
W: for<'a> Fn(&attr::Field) -> bool, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'a
lifetime parameter is never used.
Thanks btw! This is going to fix a quite common stumbling block. |
Also, removes extraneous `where for`
Those errors should be fixed now. |
87b97fb
to
629bf7b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Thank you.
Prior to this, structs and enums that had fields using associated types wouldn't have the appropriate where bounds set. This fixes that, meaning that this now builds:
Fixes #1208.