Rollup merge of #130702 - clubby789:unstable-book-docs, r=ehuss

Add some missing unstable book tracking issue links
This commit is contained in:
Guillaume Gomez 2024-09-22 19:19:16 +02:00 committed by GitHub
commit a34e0f5600
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# `branch-protection` # `branch-protection`
The tracking issue for this feature is: [#113369](https://github.com/rust-lang/rust/issues/113369).
------------------------
This option lets you enable branch authentication instructions on AArch64. This option lets you enable branch authentication instructions on AArch64.
This option is only accepted when targeting AArch64 architectures. This option is only accepted when targeting AArch64 architectures.
It takes some combination of the following values, separated by a `,`. It takes some combination of the following values, separated by a `,`.

View File

@ -3,6 +3,10 @@
The `more_qualified_paths` feature can be used in order to enable the The `more_qualified_paths` feature can be used in order to enable the
use of qualified paths in patterns. use of qualified paths in patterns.
The tracking issue for this feature is: [#86935](https://github.com/rust-lang/rust/issues/86935).
------------------------
## Example ## Example
```rust ```rust

View File

@ -3,6 +3,10 @@
`postfix-match` adds the feature for matching upon values postfix `postfix-match` adds the feature for matching upon values postfix
the expressions that generate the values. the expressions that generate the values.
The tracking issue for this feature is: [#121618](https://github.com/rust-lang/rust/issues/121618).
------------------------
```rust,edition2021 ```rust,edition2021
#![feature(postfix_match)] #![feature(postfix_match)]