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> {
356356 ( * params) . subscribe_payload . operation_name . as_deref ( ) ,
357357 ( * params) . schema . root_node ( ) ,
358358 & ( * 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 ,
360364 )
361365 }
362366 . 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> {
326326 ( * params) . start_payload . operation_name . as_deref ( ) ,
327327 ( * params) . schema . root_node ( ) ,
328328 & ( * 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 ,
330334 )
331335 }
332336 . map_ok ( |( stream, errors) | {
You can’t perform that action at this time.
0 commit comments