@@ -424,7 +424,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
424
424
origin = updated. 1 ;
425
425
426
426
let ( place, capture_kind) = match capture_clause {
427
- hir:: CaptureBy :: Value => adjust_for_move_closure ( place, capture_kind) ,
427
+ hir:: CaptureBy :: Value { .. } => adjust_for_move_closure ( place, capture_kind) ,
428
428
hir:: CaptureBy :: Ref => adjust_for_non_move_closure ( place, capture_kind) ,
429
429
} ;
430
430
@@ -958,7 +958,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
958
958
let ty = self . resolve_vars_if_possible ( self . node_ty ( var_hir_id) ) ;
959
959
960
960
let ty = match closure_clause {
961
- hir:: CaptureBy :: Value => ty, // For move closure the capture kind should be by value
961
+ hir:: CaptureBy :: Value { .. } => ty, // For move closure the capture kind should be by value
962
962
hir:: CaptureBy :: Ref => {
963
963
// For non move closure the capture kind is the max capture kind of all captures
964
964
// according to the ordering ImmBorrow < UniqueImmBorrow < MutBorrow < ByValue
@@ -1073,7 +1073,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1073
1073
1074
1074
match closure_clause {
1075
1075
// Only migrate if closure is a move closure
1076
- hir:: CaptureBy :: Value => {
1076
+ hir:: CaptureBy :: Value { .. } => {
1077
1077
let mut diagnostics_info = FxIndexSet :: default ( ) ;
1078
1078
let upvars =
1079
1079
self . tcx . upvars_mentioned ( closure_def_id) . expect ( "must be an upvar" ) ;
@@ -1479,10 +1479,12 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
1479
1479
// If the data will be moved out of this place, then the place will be truncated
1480
1480
// at the first Deref in `adjust_upvar_borrow_kind_for_consume` and then moved into
1481
1481
// the closure.
1482
- hir:: CaptureBy :: Value if !place. deref_tys ( ) . any ( Ty :: is_ref) => {
1482
+ hir:: CaptureBy :: Value { .. } if !place. deref_tys ( ) . any ( Ty :: is_ref) => {
1483
1483
ty:: UpvarCapture :: ByValue
1484
1484
}
1485
- hir:: CaptureBy :: Value | hir:: CaptureBy :: Ref => ty:: UpvarCapture :: ByRef ( ty:: ImmBorrow ) ,
1485
+ hir:: CaptureBy :: Value { .. } | hir:: CaptureBy :: Ref => {
1486
+ ty:: UpvarCapture :: ByRef ( ty:: ImmBorrow )
1487
+ }
1486
1488
}
1487
1489
}
1488
1490
0 commit comments