Rust Async Working Group
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # Open discussion: June 2023 This is the doc for open discussion within wg-async about various design questions and other topics. Please feel free to propose a topic below. On the day of the meeting, we'll do a quick poll to sort the topics by interest and then go through them one by one. If you have a brief (under 5 min) introduction prepared for the group, we'll take that into account as we prioritize the topics. ###### tags: `open-discussion` Leave discussion topics below. --- - (Vincent): I seem to have lost track of the `#[refine]` macros. Would it be possible to provide a brief introduction to them? - (Vincent): I came across Niko's post discussing async stabilization. It would be helpful to identify the specific issues we need to address before entering the freeze period. Are there any particular polishing tasks or issues that we should focus on? - (added by Vincent idea from eholk): Discussing our triage process https://rust-lang.zulipchat.com/#narrow/stream/187312-wg-async/topic/Triage.20Process - Governance update - Leadership council and t-launching-pad --- ## #[refine] - (Vincent): I seem to have lost track of the `#[refine]` macros. Would it be possible to provide a brief introduction to them? Canonical example is a trait like this: ```rust trait IntoIter { type Item; fn into_iter(self) -> impl Iterator<Item = Self::Item>; } ``` ```rust impl<T> IntoIter for MyVec<T> { type Item = T; fn into_iter(self) -> impl Iterator<Item = T> { ... } } ``` Let's say you want to add new details; the RFC proposes adding an attribute called `#[refine]` for that.. ```rust impl<T> IntoIter for MyVec<T> { type Item = T; #[refine] fn into_iter(self) -> impl DoubleEndedIterator<Item = T> { ... } } ``` let's look at an example user of this trait... ```rust fn process_container<C: IntoIter>(input: C) { ... } ``` they might want RTN... ```rust fn process_container< C: IntoIter<into_iter(): DoubleEndedIterator> >(input: C) { ... } ``` But auto traits still leak, even without `#[refine]`. :( --- tmandry also wants to add a lint against (implicit) auto trait leakage on `pub` functions/methods. eholk: :+1: tmandry: The only problem is we don't have a way to be explicit with `async fn`. Some ideas: * `async(Send)` * `#[refine(Send)]` ..nevermind, that only makes sense in the context of a trait impl * `#[async(Send)]` --- ## Stabilization/implementation issues (Vincent): I came across Niko's post discussing async stabilization. It would be helpful to identify the specific issues we need to address before entering the freeze period. Are there any particular polishing tasks or issues that we should focus on? https://github.com/rust-lang/rust/labels/F-return_position_impl_trait_in_trait https://github.com/rust-lang/rust/labels/F-async_fn_in_trait Blockers for stabilization: * [#112194](https://github.com/rust-lang/rust/issues/112194): Unclear what the right behavior is * https://github.com/rust-lang/rust/issues/108304 maybe https://github.com/rust-lang/rust/issues/74497 -- [playground](https://www.rustexplorer.com/b#%2F*%0A%5Bdependencies%5D%0A%0A*%2F%0A%0Ause%20std%3A%3Afuture%3A%3AFuture%3B%0A%0Apub%20async%20fn%20bar()%20%7B%0A%20%20%20%20foo(%7Cx%7C%20baz(x)).await%3B%0A%7D%0A%0Apub%20async%20fn%20baz(x%3A%20%26u8)%20-%3E%20bool%20%7B%0A%20%20%20%20if%20*x%20%3D%3D%201%20%7B%0A%20%20%20%20%20%20%20%20false%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20true%0A%20%20%20%20%7D%0A%7D%0A%0Apub%20async%20fn%20foo%3CF%2C%20T%3E(f%3A%20F)%20-%3E%20bool%0Awhere%0A%20%20%20%20F%3A%20Fn(%26u8)%20-%3E%20T%2C%0A%20%20%20%20T%3A%20Future%3COutput%20%3D%20bool%3E%2C%0A%7B%0A%20%20%20%20f(%2632).await%0A%7D%0A%0Afn%20main()%20%7B%7D) --- ## Triage meeting https://rust-lang.github.io/wg-async/triage.html eholk: Should we update the triage instructions to reflect reality? https://forge.rust-lang.org/compiler/prioritization/priority-levels.html Let's start assigning priorities, focus the purpose of the meeting on prioritization, not debugging. Do we still want the project board? https://github.com/orgs/rust-lang/projects/29/views/1 vincent: We can use for categorizing issues. I also find it useful for keeping track myself. tmandry: Feel free to try adding a custom field for categorizing --- ## Topic name: prompt ---

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully