rename-future icon indicating copy to clipboard operation
rename-future copied to clipboard

You can name anonymous Future from async fn without dyn or Box!

Results 1 rename-future issues
Sort by recently updated
recently updated
newest added

Currently to achieve it I can do this ```rust #[rename_future(HandleProtocolFuture(!Send))] pub async fn some_fn() {} ``` But I don't want my fn to public can you allow something like ```rust...