https://github.com/laugharne/udemy_the_complete_rust_programming_course
As well as practical projects, nearly every section of the course has a dedicated student assignment to complete! Each assignments tests your new skills and helps give you the confidence to tackle your own projects going forward!
https://github.com/laugharne/udemy_the_complete_rust_programming_course
cargo course-project courses rust udemy udemy-course udemy-course-project
Last synced: 6 months ago
JSON representation
As well as practical projects, nearly every section of the course has a dedicated student assignment to complete! Each assignments tests your new skills and helps give you the confidence to tackle your own projects going forward!
- Host: GitHub
- URL: https://github.com/laugharne/udemy_the_complete_rust_programming_course
- Owner: Laugharne
- Created: 2023-08-05T13:27:01.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-05T07:33:41.000Z (about 2 years ago)
- Last Synced: 2025-02-01T05:41:48.249Z (8 months ago)
- Topics: cargo, course-project, courses, rust, udemy, udemy-course, udemy-course-project
- Language: Rust
- Homepage:
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 📖 Table of Contents
- [📖 Table of Contents](#-table-of-contents)
- [📍 Overview](#-overview)
- [🌲 Repository Tree](#-repository-tree)----
### 📍 Overview
As well as practical projects, nearly every section of the course has a dedicated student assignment to complete! Each assignments tests your new skills and helps give you the confidence to tackle your own projects going forward!
In this course I will cover:
- Common programming concepts (fundamental types, functions, control flow)
- Ownership and moves
- References
- Structs
- Enums and Patterns
- Error Handling
- Crates and Modules
- Traits and Generics
- Iterators
- Collections
- Concurrency
- WebassemblyAnd much, much more!
By the end of this course you will have started at the basics of programming in **Rust**
----
### 🌲 Repository Tree
```bash
.
├── README.md
├── section_01
├── section_02
│ ├── control_flow
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── data_types
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── exercice_1
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── functions
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── hello
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── variables
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_03
│ ├── exercice_2
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── ownership
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_04
│ ├── exercice_3
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── structs
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_05
│ ├── enums_pattern_matching
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── exercice_4
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_06
│ ├── exercice_5
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── exercice_5_2
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── generics_and_traits
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_07
│ └── todo
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ ├── lib.rs
│ ├── things_todo
│ │ └── items_completed.rs
│ └── things_todo.rs
├── section_08
│ ├── binary_heap
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── maps
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── sets
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── vectors
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_09
│ ├── catch
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ ├── error.txt
│ │ └── src
│ │ └── main.rs
│ ├── panic
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── propagation
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ ├── renamed.txt
│ │ └── src
│ │ └── main.rs
│ ├── result
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── unwrap
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_10
│ ├── assertions
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── lib.rs
│ └── testing
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── section_11
│ └── cli
│ ├── Cargo.lock
│ ├── Cargo.toml
│ ├── Copy.toml
│ ├── src
│ │ ├── find_and_replace.rs
│ │ └── main.rs
│ ├── test-mod.txt
│ └── test.txt
├── section_12
│ ├── closures
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── exercice_6
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── fn_traits
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── iterators
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── type_annotation_and_performance
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_13
│ ├── box_deref
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── exercice_7_1
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── exercice_7_2
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── rc_and_arc
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── refcell
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_14
│ ├── channels
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── channels_2
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── exercice_8
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── mutex_poisoning
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── rayon
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── rayon_2
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── send_and_sync
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── shared_state
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── shared_state_2
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── spawn_and_join
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── spawn_and_join_3
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_15
│ ├── exercice_9
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── macros
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_16
│ └── unsafe_code
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_17
│ ├── chat_103
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ ├── bin
│ │ │ ├── client.rs
│ │ │ └── server
│ │ │ ├── chats_map.rs
│ │ │ ├── chats.rs
│ │ │ ├── connection.rs
│ │ │ └── main.rs
│ │ ├── lib.rs
│ │ └── utils.rs
│ ├── chat_105
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ ├── bin
│ │ │ ├── client.rs
│ │ │ └── server
│ │ │ ├── chats_map.rs
│ │ │ ├── chats.rs
│ │ │ ├── connection.rs
│ │ │ └── main.rs
│ │ ├── lib.rs
│ │ └── utils.rs
│ └── future_async_await
│ ├── Cargo.lock
│ ├── Cargo.toml
│ ├── read.txt
│ └── src
│ └── main.rs
├── section_18
│ └── wasm-game-of-life
│ ├── Cargo.lock
│ ├── Cargo.toml
│ ├── LICENSE_APACHE
│ ├── LICENSE_MIT
│ ├── pkg
│ ├── README.md
│ ├── src
│ │ ├── lib.rs
│ │ └── utils.rs
│ ├── tests
│ │ └── web.rs
│ └── www
│ ├── bootstrap.js
│ ├── index.html
│ ├── index.js
│ ├── LICENSE-APACHE
│ ├── LICENSE-MIT
│ ├── package.json
│ ├── package-lock.json
│ ├── README.md
│ └── webpack.config.js
├── section_19
├── section_20
│ ├── assignment
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── factorial
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── fibonacci
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── palindrome
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_21
│ ├── bubble_sort
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── merge_sort
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ ├── quick_sort
│ │ ├── Cargo.lock
│ │ ├── Cargo.toml
│ │ └── src
│ │ └── main.rs
│ └── selection_sort
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── main.rs
├── section_22
│ └── linked_list
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── section_23
│ └── stack_queue
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── section_24
│ └── bst
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── section_25
│ └── dynamic
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
├── section_26
│ └── graphs
│ ├── Cargo.lock
│ ├── Cargo.toml
│ └── src
│ └── lib.rs
└── tmp.txt172 directories, 244 files
```----