mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-02 04:48:13 +00:00
Merge pull request #18594 from ChayimFriedman2/async-closures
feat: Support `AsyncFnX` traits
This commit is contained in:
commit
abc7147bb7
9 changed files with 289 additions and 66 deletions
|
|
@ -150,6 +150,9 @@ define_symbols! {
|
|||
C,
|
||||
call_mut,
|
||||
call_once,
|
||||
async_call_once,
|
||||
async_call_mut,
|
||||
async_call,
|
||||
call,
|
||||
cdecl,
|
||||
Center,
|
||||
|
|
@ -221,6 +224,9 @@ define_symbols! {
|
|||
fn_mut,
|
||||
fn_once_output,
|
||||
fn_once,
|
||||
async_fn_once,
|
||||
async_fn_mut,
|
||||
async_fn,
|
||||
fn_ptr_addr,
|
||||
fn_ptr_trait,
|
||||
format_alignment,
|
||||
|
|
@ -334,6 +340,8 @@ define_symbols! {
|
|||
Option,
|
||||
Ord,
|
||||
Output,
|
||||
CallRefFuture,
|
||||
CallOnceFuture,
|
||||
owned_box,
|
||||
packed,
|
||||
panic_2015,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue