├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── book.toml ├── deploy.sh ├── language.js └── src ├── SUMMARY.md ├── editions ├── index.md └── transitioning-your-code-to-a-new-edition.md ├── introduction.md ├── rust-2015 └── index.md ├── rust-2018 ├── cargo-and-crates-io │ ├── cargo-can-use-a-local-registry-replacement.md │ ├── cargo-check-for-faster-checking.md │ ├── cargo-install-for-easy-installation-of-tools.md │ ├── cargo-new-defaults-to-a-binary-project.md │ ├── cargo-rustc-for-passing-arbitrary-flags-to-rustc.md │ ├── cargo-workspaces-for-multi-package-projects.md │ ├── crates-io-disallows-wildcard-dependencies.md │ ├── index.md │ ├── multi-file-examples.md │ └── replacing-dependencies-with-patch.md ├── control-flow │ ├── async-await-for-easier-concurrency.md │ ├── index.md │ └── loops-can-break-with-a-value.md ├── data-types │ ├── 128-bit-integers.md │ ├── choosing-alignment-with-the-repr-attribute.md │ ├── field-init-shorthand.md │ ├── inclusive-ranges.md │ ├── index.md │ ├── operator-equals-are-now-implementable.md │ └── union-for-an-unsafe-form-of-enum.md ├── documentation │ ├── index.md │ ├── new-editions-of-the-book.md │ ├── std-os-has-documentation-for-all-platforms.md │ ├── the-rust-bookshelf.md │ └── the-rustonomicon.md ├── error-handling-and-panics │ ├── aborting-on-panic.md │ ├── controlling-panics-with-std-panic.md │ ├── index.md │ ├── question-mark-in-main-and-tests.md │ └── the-question-mark-operator-for-easier-error-handling.md ├── index.md ├── macros │ ├── custom-derive.md │ ├── index.md │ └── macro-changes.md ├── module-system │ ├── index.md │ ├── more-visibility-modifiers.md │ ├── nested-imports-with-use.md │ ├── path-clarity.md │ └── raw-identifiers.md ├── ownership-and-lifetimes │ ├── default-match-bindings.md │ ├── index.md │ ├── inference-in-structs.md │ ├── lifetime-elision-in-impl.md │ ├── simpler-lifetimes-in-static-and-const.md │ └── the-anonymous-lifetime.md ├── platform-and-target-support │ ├── cdylib-crates-for-c-interoperability.md │ ├── global-allocators.md │ ├── index.md │ ├── libcore-for-low-level-rust.md │ ├── msvc-toolchain-support.md │ ├── musl-support-for-fully-static-binaries.md │ └── webassembly-support.md ├── rustdoc │ ├── documentation-tests-can-now-compile-fail.md │ ├── index.md │ └── rustdoc-uses-commonmark.md ├── rustup-for-managing-rust-versions.md ├── simd-for-faster-computing.md ├── slice-patterns.md ├── the-compiler │ ├── an-attribute-for-deprecation.md │ ├── improved-error-messages.md │ ├── incremental-compilation-for-faster-compiles.md │ └── index.md └── trait-system │ ├── associated-constants.md │ ├── dyn-trait-for-trait-objects.md │ ├── impl-trait-for-returning-complex-types-with-ease.md │ ├── index.md │ └── more-container-types-support-trait-objects.md └── unstable-feature-status.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/book.toml -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/deploy.sh -------------------------------------------------------------------------------- /language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/language.js -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/editions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/editions/index.md -------------------------------------------------------------------------------- /src/editions/transitioning-your-code-to-a-new-edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/editions/transitioning-your-code-to-a-new-edition.md -------------------------------------------------------------------------------- /src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/introduction.md -------------------------------------------------------------------------------- /src/rust-2015/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2015/index.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/cargo-can-use-a-local-registry-replacement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/cargo-can-use-a-local-registry-replacement.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/cargo-check-for-faster-checking.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/cargo-install-for-easy-installation-of-tools.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/cargo-new-defaults-to-a-binary-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/cargo-new-defaults-to-a-binary-project.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/cargo-rustc-for-passing-arbitrary-flags-to-rustc.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/cargo-workspaces-for-multi-package-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/cargo-workspaces-for-multi-package-projects.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/crates-io-disallows-wildcard-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/crates-io-disallows-wildcard-dependencies.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/index.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/multi-file-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/multi-file-examples.md -------------------------------------------------------------------------------- /src/rust-2018/cargo-and-crates-io/replacing-dependencies-with-patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/cargo-and-crates-io/replacing-dependencies-with-patch.md -------------------------------------------------------------------------------- /src/rust-2018/control-flow/async-await-for-easier-concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/control-flow/async-await-for-easier-concurrency.md -------------------------------------------------------------------------------- /src/rust-2018/control-flow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/control-flow/index.md -------------------------------------------------------------------------------- /src/rust-2018/control-flow/loops-can-break-with-a-value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/control-flow/loops-can-break-with-a-value.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/128-bit-integers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/128-bit-integers.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/choosing-alignment-with-the-repr-attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/choosing-alignment-with-the-repr-attribute.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/field-init-shorthand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/field-init-shorthand.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/inclusive-ranges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/inclusive-ranges.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/index.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/operator-equals-are-now-implementable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/operator-equals-are-now-implementable.md -------------------------------------------------------------------------------- /src/rust-2018/data-types/union-for-an-unsafe-form-of-enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/data-types/union-for-an-unsafe-form-of-enum.md -------------------------------------------------------------------------------- /src/rust-2018/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/documentation/index.md -------------------------------------------------------------------------------- /src/rust-2018/documentation/new-editions-of-the-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/documentation/new-editions-of-the-book.md -------------------------------------------------------------------------------- /src/rust-2018/documentation/std-os-has-documentation-for-all-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/documentation/std-os-has-documentation-for-all-platforms.md -------------------------------------------------------------------------------- /src/rust-2018/documentation/the-rust-bookshelf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/documentation/the-rust-bookshelf.md -------------------------------------------------------------------------------- /src/rust-2018/documentation/the-rustonomicon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/documentation/the-rustonomicon.md -------------------------------------------------------------------------------- /src/rust-2018/error-handling-and-panics/aborting-on-panic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/error-handling-and-panics/aborting-on-panic.md -------------------------------------------------------------------------------- /src/rust-2018/error-handling-and-panics/controlling-panics-with-std-panic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/error-handling-and-panics/controlling-panics-with-std-panic.md -------------------------------------------------------------------------------- /src/rust-2018/error-handling-and-panics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/error-handling-and-panics/index.md -------------------------------------------------------------------------------- /src/rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/error-handling-and-panics/question-mark-in-main-and-tests.md -------------------------------------------------------------------------------- /src/rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/error-handling-and-panics/the-question-mark-operator-for-easier-error-handling.md -------------------------------------------------------------------------------- /src/rust-2018/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/index.md -------------------------------------------------------------------------------- /src/rust-2018/macros/custom-derive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/macros/custom-derive.md -------------------------------------------------------------------------------- /src/rust-2018/macros/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/macros/index.md -------------------------------------------------------------------------------- /src/rust-2018/macros/macro-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/macros/macro-changes.md -------------------------------------------------------------------------------- /src/rust-2018/module-system/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/module-system/index.md -------------------------------------------------------------------------------- /src/rust-2018/module-system/more-visibility-modifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/module-system/more-visibility-modifiers.md -------------------------------------------------------------------------------- /src/rust-2018/module-system/nested-imports-with-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/module-system/nested-imports-with-use.md -------------------------------------------------------------------------------- /src/rust-2018/module-system/path-clarity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/module-system/path-clarity.md -------------------------------------------------------------------------------- /src/rust-2018/module-system/raw-identifiers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/module-system/raw-identifiers.md -------------------------------------------------------------------------------- /src/rust-2018/ownership-and-lifetimes/default-match-bindings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/ownership-and-lifetimes/default-match-bindings.md -------------------------------------------------------------------------------- /src/rust-2018/ownership-and-lifetimes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/ownership-and-lifetimes/index.md -------------------------------------------------------------------------------- /src/rust-2018/ownership-and-lifetimes/inference-in-structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/ownership-and-lifetimes/inference-in-structs.md -------------------------------------------------------------------------------- /src/rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/ownership-and-lifetimes/lifetime-elision-in-impl.md -------------------------------------------------------------------------------- /src/rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/ownership-and-lifetimes/simpler-lifetimes-in-static-and-const.md -------------------------------------------------------------------------------- /src/rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/ownership-and-lifetimes/the-anonymous-lifetime.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/cdylib-crates-for-c-interoperability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/cdylib-crates-for-c-interoperability.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/global-allocators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/global-allocators.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/index.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/libcore-for-low-level-rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/libcore-for-low-level-rust.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/msvc-toolchain-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/msvc-toolchain-support.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/musl-support-for-fully-static-binaries.md -------------------------------------------------------------------------------- /src/rust-2018/platform-and-target-support/webassembly-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/platform-and-target-support/webassembly-support.md -------------------------------------------------------------------------------- /src/rust-2018/rustdoc/documentation-tests-can-now-compile-fail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/rustdoc/documentation-tests-can-now-compile-fail.md -------------------------------------------------------------------------------- /src/rust-2018/rustdoc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/rustdoc/index.md -------------------------------------------------------------------------------- /src/rust-2018/rustdoc/rustdoc-uses-commonmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/rustdoc/rustdoc-uses-commonmark.md -------------------------------------------------------------------------------- /src/rust-2018/rustup-for-managing-rust-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/rustup-for-managing-rust-versions.md -------------------------------------------------------------------------------- /src/rust-2018/simd-for-faster-computing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/simd-for-faster-computing.md -------------------------------------------------------------------------------- /src/rust-2018/slice-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/slice-patterns.md -------------------------------------------------------------------------------- /src/rust-2018/the-compiler/an-attribute-for-deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/the-compiler/an-attribute-for-deprecation.md -------------------------------------------------------------------------------- /src/rust-2018/the-compiler/improved-error-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/the-compiler/improved-error-messages.md -------------------------------------------------------------------------------- /src/rust-2018/the-compiler/incremental-compilation-for-faster-compiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/the-compiler/incremental-compilation-for-faster-compiles.md -------------------------------------------------------------------------------- /src/rust-2018/the-compiler/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/the-compiler/index.md -------------------------------------------------------------------------------- /src/rust-2018/trait-system/associated-constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/trait-system/associated-constants.md -------------------------------------------------------------------------------- /src/rust-2018/trait-system/dyn-trait-for-trait-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/trait-system/dyn-trait-for-trait-objects.md -------------------------------------------------------------------------------- /src/rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/trait-system/impl-trait-for-returning-complex-types-with-ease.md -------------------------------------------------------------------------------- /src/rust-2018/trait-system/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/trait-system/index.md -------------------------------------------------------------------------------- /src/rust-2018/trait-system/more-container-types-support-trait-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/rust-2018/trait-system/more-container-types-support-trait-objects.md -------------------------------------------------------------------------------- /src/unstable-feature-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rust-lang-cn/edition-guide-cn/HEAD/src/unstable-feature-status.md --------------------------------------------------------------------------------