mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
Generate trait bounds on associated types
This commit is contained in:
parent
136859154b
commit
6b3e1e50b2
1 changed files with 6 additions and 5 deletions
|
@ -25,11 +25,12 @@ impl<'a> ParamsInScope<'a> {
|
||||||
|
|
||||||
fn crawl(in_scope: &ParamsInScope, ty: &Type, found: &mut bool) {
|
fn crawl(in_scope: &ParamsInScope, ty: &Type, found: &mut bool) {
|
||||||
if let Type::Path(ty) = ty {
|
if let Type::Path(ty) = ty {
|
||||||
if ty.qself.is_none() {
|
if let Some(qself) = &ty.qself {
|
||||||
if let Some(ident) = ty.path.get_ident() {
|
crawl(in_scope, &qself.ty, found);
|
||||||
if in_scope.names.contains(ident) {
|
} else {
|
||||||
*found = true;
|
let front = ty.path.segments.first().unwrap();
|
||||||
}
|
if front.arguments.is_none() && in_scope.names.contains(&front.ident) {
|
||||||
|
*found = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for segment in &ty.path.segments {
|
for segment in &ty.path.segments {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue