@@ -241,6 +241,9 @@ language_item_table! {
241
241
FusedIterator , sym:: fused_iterator, fused_iterator_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
242
242
Future , sym:: future_trait, future_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
243
243
FutureOutput , sym:: future_output, future_output, Target :: AssocTy , GenericRequirement :: Exact ( 0 ) ;
244
+ IntoFuture , sym:: into_future, into_future_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
245
+ IntoFutureOutput , sym:: into_future_output, into_future_output, Target :: AssocTy , GenericRequirement :: Exact ( 0 ) ;
246
+ IntoFutureIntoFuture , sym:: into_future_into_future, into_future_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
244
247
AsyncIterator , sym:: async_iterator, async_iterator_trait, Target :: Trait , GenericRequirement :: Exact ( 0 ) ;
245
248
246
249
CoroutineState , sym:: coroutine_state, coroutine_state, Target :: Enum , GenericRequirement :: None ;
@@ -377,7 +380,6 @@ language_item_table! {
377
380
ControlFlowContinue , sym:: Continue , cf_continue_variant, Target :: Variant , GenericRequirement :: None ;
378
381
ControlFlowBreak , sym:: Break , cf_break_variant, Target :: Variant , GenericRequirement :: None ;
379
382
380
- IntoFutureIntoFuture , sym:: into_future, into_future_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
381
383
IntoIterIntoIter , sym:: into_iter, into_iter_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
382
384
IteratorNext , sym:: next, next_fn, Target :: Method ( MethodKind :: Trait { body: false } ) , GenericRequirement :: None ;
383
385
0 commit comments