mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47: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) {
|
||||
if let Type::Path(ty) = ty {
|
||||
if ty.qself.is_none() {
|
||||
if let Some(ident) = ty.path.get_ident() {
|
||||
if in_scope.names.contains(ident) {
|
||||
*found = true;
|
||||
}
|
||||
if let Some(qself) = &ty.qself {
|
||||
crawl(in_scope, &qself.ty, found);
|
||||
} else {
|
||||
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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue