|
1 | 1 | <!--
|
2 |
| -# The Edition Guide |
| 2 | +# The Rust Edition Guide |
3 | 3 | -->
|
4 |
| -# エディションガイド |
| 4 | +# Rust エディションガイド |
5 | 5 |
|
6 | 6 | <!--
|
7 | 7 | [Introduction](introduction.md)
|
|
56 | 56 | - [IntoIterator for arrays](rust-2021/IntoIterator-for-arrays.md)
|
57 | 57 | - [Disjoint capture in closures](rust-2021/disjoint-capture-in-closures.md)
|
58 | 58 | - [Panic macro consistency](rust-2021/panic-macro-consistency.md)
|
59 |
| - - [Reserving syntax](rust-2021/reserving-syntax.md) |
| 59 | + - [Reserved syntax](rust-2021/reserved-syntax.md) |
| 60 | + - [Raw lifetimes](rust-2021/raw-lifetimes.md) |
60 | 61 | - [Warnings promoted to errors](rust-2021/warnings-promoted-to-error.md)
|
61 | 62 | - [Or patterns in macro-rules](rust-2021/or-patterns-macro-rules.md)
|
| 63 | + - [C-string literals](rust-2021/c-string-literals.md) |
62 | 64 | -->
|
63 | 65 |
|
64 | 66 | - [Rust 2021](rust-2021/index.md)
|
|
68 | 70 | - [クロージャはフィールドごとにキャプチャする](rust-2021/disjoint-capture-in-closures.md)
|
69 | 71 | - [panic マクロの一貫性](rust-2021/panic-macro-consistency.md)
|
70 | 72 | - [構文の予約](rust-2021/reserving-syntax.md)
|
| 73 | + - [Raw lifetimes](rust-2021/raw-lifetimes.md) |
71 | 74 | - [警告からエラーへの格上げ](rust-2021/warnings-promoted-to-error.md)
|
72 | 75 | - [マクロ規則における OR パターン](rust-2021/or-patterns-macro-rules.md)
|
| 76 | + - [C-string literals](rust-2021/c-string-literals.md) |
| 77 | + |
| 78 | +## Rust 2024 |
| 79 | + |
| 80 | +<!-- |
| 81 | +- [Rust 2024](rust-2024/index.md) |
| 82 | + - [Language](rust-2024/language.md) |
| 83 | + - [RPIT lifetime capture rules](rust-2024/rpit-lifetime-capture.md) |
| 84 | + - [`if let` temporary scope](rust-2024/temporary-if-let-scope.md) |
| 85 | + - [Tail expression temporary scope](rust-2024/temporary-tail-expr-scope.md) |
| 86 | + - [Match ergonomics reservations](rust-2024/match-ergonomics.md) |
| 87 | + - [Unsafe `extern` blocks](rust-2024/unsafe-extern.md) |
| 88 | + - [Unsafe attributes](rust-2024/unsafe-attributes.md) |
| 89 | + - [`unsafe_op_in_unsafe_fn` warning](rust-2024/unsafe-op-in-unsafe-fn.md) |
| 90 | + - [Disallow references to `static mut`](rust-2024/static-mut-references.md) |
| 91 | + - [Never type fallback change](rust-2024/never-type-fallback.md) |
| 92 | + - [Macro fragment specifiers](rust-2024/macro-fragment-specifiers.md) |
| 93 | + - [Missing macro fragment specifiers](rust-2024/missing-macro-fragment-specifiers.md) |
| 94 | + - [`gen` keyword](rust-2024/gen-keyword.md) |
| 95 | + - [Reserved syntax](rust-2024/reserved-syntax.md) |
| 96 | + - [Standard library](rust-2024/standard-library.md) |
| 97 | + - [Changes to the prelude](rust-2024/prelude.md) |
| 98 | + - [Add `IntoIterator` for `Box<[T]>`](rust-2024/intoiterator-box-slice.md) |
| 99 | + - [Newly unsafe functions](rust-2024/newly-unsafe-functions.md) |
| 100 | + - [Cargo](rust-2024/cargo.md) |
| 101 | + - [Cargo: Rust-version aware resolver](rust-2024/cargo-resolver.md) |
| 102 | + - [Cargo: Table and key name consistency](rust-2024/cargo-table-key-names.md) |
| 103 | + - [Cargo: Reject unused inherited default-features](rust-2024/cargo-inherited-default-features.md) |
| 104 | + - [Rustdoc](rust-2024/rustdoc.md) |
| 105 | + - [Rustdoc combined tests](rust-2024/rustdoc-doctests.md) |
| 106 | + - [Rustdoc nested `include!` change](rust-2024/rustdoc-nested-includes.md) |
| 107 | + - [Rustfmt](rust-2024/rustfmt.md) |
| 108 | + - [Rustfmt: Style edition](rust-2024/rustfmt-style-edition.md) |
| 109 | + - [Rustfmt: Formatting fixes](rust-2024/rustfmt-formatting-fixes.md) |
| 110 | + - [Rustfmt: Combine all delimited exprs as last argument](rust-2024/rustfmt-overflow-delimited-expr.md) |
| 111 | + - [Rustfmt: Raw identifier sorting](rust-2024/rustfmt-raw-identifier-sorting.md) |
| 112 | + - [Rustfmt: Version sorting](rust-2024/rustfmt-version-sorting.md) |
| 113 | +--> |
| 114 | + |
| 115 | +- [Rust 2024](rust-2024/index.md) |
| 116 | + - [言語](rust-2024/language.md) |
| 117 | + - [RPIT lifetime capture rules](rust-2024/rpit-lifetime-capture.md) |
| 118 | + - [`if let` temporary scope](rust-2024/temporary-if-let-scope.md) |
| 119 | + - [Tail expression temporary scope](rust-2024/temporary-tail-expr-scope.md) |
| 120 | + - [Match ergonomics reservations](rust-2024/match-ergonomics.md) |
| 121 | + - [Unsafe `extern` blocks](rust-2024/unsafe-extern.md) |
| 122 | + - [Unsafe attributes](rust-2024/unsafe-attributes.md) |
| 123 | + - [`unsafe_op_in_unsafe_fn` warning](rust-2024/unsafe-op-in-unsafe-fn.md) |
| 124 | + - [Disallow references to `static mut`](rust-2024/static-mut-references.md) |
| 125 | + - [Never type fallback change](rust-2024/never-type-fallback.md) |
| 126 | + - [Macro fragment specifiers](rust-2024/macro-fragment-specifiers.md) |
| 127 | + - [Missing macro fragment specifiers](rust-2024/missing-macro-fragment-specifiers.md) |
| 128 | + - [`gen` keyword](rust-2024/gen-keyword.md) |
| 129 | + - [Reserved syntax](rust-2024/reserved-syntax.md) |
| 130 | + - [標準ライブラリ](rust-2024/standard-library.md) |
| 131 | + - [Changes to the prelude](rust-2024/prelude.md) |
| 132 | + - [Add `IntoIterator` for `Box<[T]>`](rust-2024/intoiterator-box-slice.md) |
| 133 | + - [Newly unsafe functions](rust-2024/newly-unsafe-functions.md) |
| 134 | + - [Cargo](rust-2024/cargo.md) |
| 135 | + - [Cargo: Rust-version aware resolver](rust-2024/cargo-resolver.md) |
| 136 | + - [Cargo: Table and key name consistency](rust-2024/cargo-table-key-names.md) |
| 137 | + - [Cargo: Reject unused inherited default-features](rust-2024/cargo-inherited-default-features.md) |
| 138 | + - [Rustdoc](rust-2024/rustdoc.md) |
| 139 | + - [Rustdoc combined tests](rust-2024/rustdoc-doctests.md) |
| 140 | + - [Rustdoc nested `include!` change](rust-2024/rustdoc-nested-includes.md) |
| 141 | + - [Rustfmt](rust-2024/rustfmt.md) |
| 142 | + - [Rustfmt: Style edition](rust-2024/rustfmt-style-edition.md) |
| 143 | + - [Rustfmt: Formatting fixes](rust-2024/rustfmt-formatting-fixes.md) |
| 144 | + - [Rustfmt: Combine all delimited exprs as last argument](rust-2024/rustfmt-overflow-delimited-expr.md) |
| 145 | + - [Rustfmt: Raw identifier sorting](rust-2024/rustfmt-raw-identifier-sorting.md) |
| 146 | + - [Rustfmt: Version sorting](rust-2024/rustfmt-version-sorting.md) |
0 commit comments