Skip to content

Commit 9829a5a

Browse files
committed
User Story 367663: Q&M: Retire Rust path and training modules (4 of 6)
1 parent 42de340 commit 9829a5a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+88
-1669
lines changed

.openpublishing.redirection.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43697,6 +43697,81 @@
4369743697
"source_path": "learn-pr/wwl-azure/microsoft-defender-cloud-threat-protection/31-summary.md",
4369843698
"redirect_url": "/training/modules/microsoft-defender-cloud-threat-protection/34-summary",
4369943699
"redirect_document_id": false
43700+
},
43701+
{
43702+
"source_path": "learn-pr/language/rust-if-else-expressions/0-introduction.yml",
43703+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43704+
"redirect_document_id": false
43705+
},
43706+
{
43707+
"source_path": "learn-pr/language/rust-if-else-expressions/1-arrays.yml",
43708+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43709+
"redirect_document_id": false
43710+
},
43711+
{
43712+
"source_path": "learn-pr/language/rust-if-else-expressions/2-vectors.yml",
43713+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43714+
"redirect_document_id": false
43715+
},
43716+
{
43717+
"source_path": "learn-pr/language/rust-if-else-expressions/3-exercise-data-types.yml",
43718+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43719+
"redirect_document_id": false
43720+
},
43721+
{
43722+
"source_path": "learn-pr/language/rust-if-else-expressions/4-if-else-expressions.yml",
43723+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43724+
"redirect_document_id": false
43725+
},
43726+
{
43727+
"source_path": "learn-pr/language/rust-if-else-expressions/5-exercise-if-else.yml",
43728+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43729+
"redirect_document_id": false
43730+
},
43731+
{
43732+
"source_path": "learn-pr/language/rust-if-else-expressions/6-summary.yml",
43733+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43734+
"redirect_document_id": false
43735+
},
43736+
{
43737+
"source_path": "learn-pr/language/rust-if-else-expressions/index.yml",
43738+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43739+
"redirect_document_id": false
43740+
},
43741+
{
43742+
"source_path": "learn-pr/language/rust-introduction/1-introduction.yml",
43743+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43744+
"redirect_document_id": false
43745+
},
43746+
{
43747+
"source_path": "learn-pr/language/rust-introduction/2-rust-overview.yml",
43748+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43749+
"redirect_document_id": false
43750+
},
43751+
{
43752+
"source_path": "learn-pr/language/rust-introduction/3-rust-features.yml",
43753+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43754+
"redirect_document_id": false
43755+
},
43756+
{
43757+
"source_path": "learn-pr/language/rust-introduction/4-rust-playground.yml",
43758+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43759+
"redirect_document_id": false
43760+
},
43761+
{
43762+
"source_path": "learn-pr/language/rust-introduction/5-summary.yml",
43763+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43764+
"redirect_document_id": false
43765+
},
43766+
{
43767+
"source_path": "learn-pr/language/rust-introduction/exercise.yml",
43768+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43769+
"redirect_document_id": false
43770+
},
43771+
{
43772+
"source_path": "learn-pr/language/rust-introduction/index.yml",
43773+
"redirect_url": "https://learn.microsoft.com/training/browse/",
43774+
"redirect_document_id": false
4370043775
}
4370143776
]
4370243777
}

learn-pr/achievements.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5259,4 +5259,14 @@ achievements:
52595259
type: badge
52605260
title: Prepare to develop AI solutions on Azure
52615261
summary: As an aspiring Azure AI Engineer, you should understand core concepts and principles of AI development, and the capabilities of Azure services used in AI solutions.
5262-
iconUrl: /training/achievements/azure-develop-ai-solutions.svg
5262+
iconUrl: /training/achievements/azure-develop-ai-solutions.svg
5263+
- uid: learn.language.rust-introduction.badge
5264+
type: badge
5265+
title: What is Rust
5266+
summary: A quick introduction to Rust language features and how Rust compares with other programming languages.
5267+
iconUrl: /training/achievements/rust-get-started.svg
5268+
- uid: learn.language.rust-if-else-expressions.badge
5269+
type: badge
5270+
title: Test conditions with if/else expressions in Rust
5271+
summary: Explore Rust compound data types like arrays and vectors. Discover how to use if/else statements to test conditions.
5272+
iconUrl: /training/achievements/rust-understand-common-concepts.svg

learn-pr/language/rust-create-program/includes/0-introduction.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ In this module, we learn common concepts in programming languages, and discover
44

55
The [Rust Playground][RustPlay] is a browser interface to the Rust compiler. You can use the Playground to experiment writing Rust code before you install the language locally, or when you might not have the compiler available. Throughout this course, we'll give Playground links to the example code and exercises. You can interact with the code, even if you don't have the Rust toolchain available at the moment.
66

7-
All code that runs on the Rust Playground can also compile and run in your local development environment. Don't be discouraged to interact with the Rust compiler from your computer. You can learn more about the Rust Playground in the [What is Rust?][Rust-intro] module.
8-
7+
All code that runs on the Rust Playground can also compile and run in your local development environment. Don't be discouraged to interact with the Rust compiler from your computer.
98
## Learning objectives
109

1110
In this module, you'll:
@@ -17,5 +16,4 @@ In this module, you'll:
1716

1817
<!-- Links -->
1918

20-
[Rust-intro]: /training/modules/rust-introduction/4-rust-playground?azure-portal=true
2119
[RustPlay]: https://play.rust-lang.org?azure-portal=true

learn-pr/language/rust-if-else-expressions/0-introduction.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

learn-pr/language/rust-if-else-expressions/1-arrays.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

learn-pr/language/rust-if-else-expressions/2-vectors.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.

learn-pr/language/rust-if-else-expressions/3-exercise-data-types.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

learn-pr/language/rust-if-else-expressions/4-if-else-expressions.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

learn-pr/language/rust-if-else-expressions/5-exercise-if-else.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

learn-pr/language/rust-if-else-expressions/6-summary.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)