2024-MatKor-Rust-Blog is the material(lecture notes, examples and assignments) repository for learning Rust programming language and making a simple blog at Korea University Club 'MatKor' in 2024 Spring.
- Week 0 (3/18) [Lecture]
- Introduction
- Week 1 (3/18) [Assignment] [Solution]
- Hello, World
- What is Rust?
- Benefits of Rust
- Playground
- Types and Values
- Hello, World
- Variables
- Values
- Arithmetic
- Type Inference
- Control Flow Basics
if
Expressions- Loops
break
andcontinue
- Blocks and Scopes
- Functions
- Macros
- Tuples and Arrays
- Arrays
- Tuples
- Array Iteration
- Patterns and Destructuring
- Assignment #1
- Hello, World
- Week 2 (3/25) [Assignment] [Solution]
- References
- Shared References
- Exclusive References
- Slices:
&[T]
- Strings
- User-Defined Types
- Named Structs
- Tuple Structs
- Enums
- Static
- Const
- Type Aliases
- Pattern Matching
- Matching Values
- Destructuring
- Let Control Flow
- Methods and Traits
- Methods
- Traits
- Deriving
- Assignment #2
- References
- Week 3 (4/1) [Assignment] [Solution]
- Generics
- Generic Functions
- Generic Data Types
- Generic Traits
impl
Trait
- Standard Library Types
- Standard Library
- Documentation
Option
Result
String
Vec
HashMap
- Standard Library Traits
- Comparisons
- Operators
From
andInto
- Casting
Read
andWrite
Default
, struct update syntax- Closures
- Assignment #3
- Generics
- Week 4 (4/8) [Assignment] [Solution]
- Memory Management
- Review of Program Memory
- Approaches to Memory Management
- Onwership
- Move Semantics
Clone
Copy
TypesDrop
- Smart Pointers
Box
Rc
- Trait Objects
- Borrowing
- Borrowing a Value
- Borrow Checking
- Interior Mutability
- Lifetimes
- Lifetime Annotations
- Lifetime Elision
- Struct Lifetimes
- Assignment #4
- Memory Management
- Week 5 (4/29) [Assignment] [Solution]
- Iterators
Iterator
IntoIterator
FromIterator
- Modules
- Modules
- Filesystem Hierarchy
- Visibility
use
,super
,self
- Testing
- Test Modules
- Other Types of Tests
- Compiler Lints and Clippy
- Error Handling
- Panics
- Try Operator
- Try Conversions
Error
Traitthiserror
andanyhow
- Unsafe Rust
- Unsafe
- Dereferencing Raw Pointers
- Mutable Static Variables
- Unions
- Unsafe Functions
- Unsafe Traits
- Assignment #5
- Iterators
- Week 6 (5/13) [Lecture] [Assignment] [Solution]
- Closures
- Capturing Variables
- Closures that Borrow
- Closures that Steal
- Function and Closure Types
- Closure Performance
- Closures and Safety
- Closures that Kill
FnOnce
FnMut
Copy
andClone
for Closures
- Callbacks
- Using Closures Effectively
- Capturing Variables
- Assignment #6
- Closures
- Week 7 (5/20) [Lecture] [Assignment] [Solution]
- Macros
- Macro Basics
- Basics of Macro Expansion
- Unintended Consequences
- Repetition
- Built-in Macros
- Debugging Macros
- Building the
json!
Macro- Fragment Types
- Recursion in Macros
- Using Traits with Macros
- Scoping and Hygiene
- Importing and Exporting Macros
- Avoiding Syntax Errors During Matching
- Beyond macro_rules!
- Macro Basics
- Assignment #7
- Macros
- Week 8 (5/27) [Lecture] [Example] [Assignment] [Solution]
- Concurrency, Part 1
- Fork-Join Parallelism
spawn
andjoin
- Error Handling Across Threads
- Sharing Immutable Data Across Threads
Rayon
- Channels
- Sending Values
- Receiving Values
- Running the Pipeline
- Channel Features and Performance
- Thread Safety:
Send
andSync
- Piping Almost Any Iterator to a Channel
- Beyond Pipelines
- Fork-Join Parallelism
- Assignment #8
- Concurrency, Part 1
- Week 9 (6/3) [Lecture] [Assignment] [Solution]
- Concurrency, Part 2
- Shared Mutable State
- What Is a Mutex?
Mutex<T>
mut
andMutex
- Why Mutexes Are Not Always a Good Idea
- Deadlock
- Poisoned Mutexes
- Multiconsumer Channels Using Mutexes
- Read/Write Locks (
RwLock<T>
) - Condition Variables (
Condvar
) - Atomics
- Global Variables
- Shared Mutable State
- Assignment #9
- Concurrency, Part 2
- Week 10 (7/1) [Lecture] [Example]
- Asynchronous Programming, Part 1
- From Synchronous to Asynchronous
- Futures
- Async Functions and Await Expressions
- Calling Async Functions from Synchronous Code:
block_on
- Spawning Async Tasks
- Async Blocks
- Building Async Functions from Async Blocks
- Spawning Async Tasks on a Thread Pool
- But Does Your Future Implement
Send
? - Long Running Computations:
yield_now
andspawn_blocking
- Comparing Asynchronous Designs
- A Real Asynchronous HTTP Client
- From Synchronous to Asynchronous
- Assignment #10
- Asynchronous Programming, Part 1
- Week 11 (TBA)
- Asynchronous Programming, Part 2
- Assignment #11
- Week 10 (TBA)
- Foreign Function Interface (FFI)
- Rust and WebAssembly
- Assignment #12
- Beginner
- Intermediate
- Advanced
Contributions are always welcome, either reporting issues/bugs or forking the repository and then issuing pull requests when you have completed some additional coding that you feel will be beneficial to the main project. If you are interested in contributing in a more dedicated capacity, then please contact me.
You can contact me via e-mail (utilForever at gmail.com). I am always happy to answer questions or help with any issues you might have, and please be sure to share any additional work or your creations with me, I love seeing what other people are making.
The class is licensed under the MIT License:
Copyright © 2024 Chris Ohk.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.