File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -356,7 +356,11 @@ impl<S: Schema> Stream for SubscriptionStart<S> {
356
356
( * params) . subscribe_payload . operation_name . as_deref ( ) ,
357
357
( * params) . schema . root_node ( ) ,
358
358
& ( * params) . subscribe_payload . variables ,
359
- & ( * params) . config . context ,
359
+ #[ expect( // required by `dangerous_implicit_autorefs` rustc lint
360
+ clippy:: needless_borrow,
361
+ reason = "required by `dangerous_implicit_autorefs` rustc lint"
362
+ ) ]
363
+ & ( & ( * params) . config ) . context ,
360
364
)
361
365
}
362
366
. map_ok ( |( stream, errors) | {
Original file line number Diff line number Diff line change @@ -326,7 +326,11 @@ impl<S: Schema> Stream for SubscriptionStart<S> {
326
326
( * params) . start_payload . operation_name . as_deref ( ) ,
327
327
( * params) . schema . root_node ( ) ,
328
328
& ( * params) . start_payload . variables ,
329
- & ( * params) . config . context ,
329
+ #[ expect( // required by `dangerous_implicit_autorefs` rustc lint
330
+ clippy:: needless_borrow,
331
+ reason = "required by `dangerous_implicit_autorefs` rustc lint"
332
+ ) ]
333
+ & ( & ( * params) . config ) . context ,
330
334
)
331
335
}
332
336
. map_ok ( |( stream, errors) | {
You can’t perform that action at this time.
0 commit comments