Oli Scherer
    • Create new note
    • Create a note from template
      • 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
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me 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
    • Save as template
    • 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 Create Help
Create Create new note Create a note from template
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
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me 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
    # const traits in practice this document highlights what we learned about const traits by actually using them in libcore and in tests. ## important things in no particular order ### impl trait bounds it is fairly common to repeat trait bounds from impl blocks but with a `[const]` bound added. impl blocks in contrast to trait impls can't be const, even if all methods within it are const. this can lead to annoying repetition. :::info `const impl` blocks that make all methods within it const and are allowed to have `[const]` trait bounds https://github.com/rust-lang/rust/pull/148434 (implemented). All methods within `const impl` are const, without explicit `const fn`. ::: :::info `impl const Trait for Type` is now `const impl Trait for Type` ::: ### format traits and functions require `dyn [const] Trait`, which needs a lot of design work to make sure we don't end up with people writing impls for both `dyn const Trait` and `dyn Trait` and potentially all other future effects. :::info at this stage we're just assuming we'll figure it out in the future, there doesn't seem anything fundamental here, just figuring out all the intricacies and making it all ergnonomic ::: ### Eq and other method-less traits made them const so people could just change any `Eq` bound to a `[const] Eq` bound instead of needing to do `Eq + [const] PartialEq` ### Destruct bound hints vs precise live drops need too many destruct bounds without precise live drops. suggestion: stabilize together, to avoid ecosystem churn where everyone adds excessive Destruct bounds and removes them later when we stabilize precise drops ### no const closures basically don't have them for the same reason we don't have dyn const trait. constness does not exist in types, only as trait bounds and during trait solving. we have not worked on a coherent plan for it at all, so basically at this stage we're just assuming we'll figure it out in the future. const traits is already immensly useful on its own without closure support. ### Deriving const traits is only possible for libstd. Ecosystem derives need to invent their own scheme (e.g. a #[const] attribute in addition to the #[derive]), but it would all be convention. Do we want to either prescribe a convention by making libstd derives work a specific way or do we want to expose derives directly in the proc macro infra? ### Bug with Copy/Clone derive order Const traits makes it more likely to hit the bug in [#124794](https://github.com/rust-lang/rust/issues/124794). To avoid this, if `Copy` and `Clone` are in different derives, `Copy` should come before `Clone` for the best generated code. ```rust // Copy should go before Clone #[derive(Copy)] #[derive_const(Clone)] struct Example; ``` ### core traits and their relationships #### Copy Clone ```rust pub const trait Copy: [const] Clone ``` ideally Copy would imply const Clone and not require Copy to be a const trait at all. but that would obviously be a breaking change. tho less of one if we did a funny and made all non-const impls of Clone for types that are Copy actually require const for the Clone methods and treat the impl as a const impl. would still break some code, but that code must be fishy as hell #### Copy Destruct https://github.com/rust-lang/rust/issues/133214#issuecomment-3336327623 Copy should imply const Destruct as that's what ownership analysis treats it as, so the trait solver should , too #### impl const Clone for Option symptom This is a symptom of a more general issue, but where we noticed it is that `Clone::clone_from` needs a `Self: [const] Destruct` bound for the default impl which is just `*self = source.clone()`. Now when someone overwrites this impl (e.g. Option), they actually want a `T: [const] Destruct` bound, not an `Option<T>: [const] Destruct` bound. Unfortunately `Option<T>: Destruct` currently does not imply `T: Destruct`. So we need to mark the entire `const Clone for Option` impl as having a `[const] Destruct` bound. ### RPIT constness is coarse-grained. In the below function, it's impossible to write the bounds so that the RPIT is const iff `T: const Trait1`, while the function is const iff `U: const Trait2`. ```rust const fn foo<T: [const] Trait1, U: [const] Trait2>(x: T) -> impl [const] Trait3 { U::something(); // requires U: const Trait2 for foo to be a const fn Wrapper(x) // requires T: const Trait1 for the RPIT to be const } ``` ### #[const_trait] attribute is rarely useful in practice TC mentioned that it may be useful to keep the attribute around so that crates could have cargo features for enabling constness without having to duplicate the item. many traits have one or more of super traits, assoc type bounds, or const where bounds, making that not useful for them. see https://github.com/rust-lang/rust/pull/148683/

    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