We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68d68c commit 1a01bb4Copy full SHA for 1a01bb4
src/expand.rs
@@ -239,7 +239,9 @@ fn transform_sig(
239
.push(parse_quote_spanned!(default_span=> 'async_trait));
240
241
if has_self {
242
- let bounds: &[InferredBound] = if let Some(receiver) = sig.receiver() {
+ let bounds: &[InferredBound] = if is_local {
243
+ &[]
244
+ } else if let Some(receiver) = sig.receiver() {
245
match receiver.ty.as_ref() {
246
// self: &Self
247
Type::Reference(ty) if ty.mutability.is_none() => &[InferredBound::Sync],
@@ -275,7 +277,7 @@ fn transform_sig(
275
277
Context::Trait { supertraits, .. } => !has_default || has_bound(supertraits, bound),
276
278
Context::Impl { .. } => true,
279
};
- if assume_bound || is_local {
280
+ if assume_bound {
281
None
282
} else {
283
Some(bound.spanned_path(default_span))
0 commit comments