That's my private Rust learning projects.
- Sample001 - Printing with
println!macro and formatting - Sample002 - Recursive fibonacci with
ifandmatch - Sample003 - Calling functions with passing ownership, by
refandmut ref - Sample004 - Binding scopes, rebinding
- Sample005 - Return by
refand new object - Sample006 - Structures and tuples
- Sample007 - Enum with function that do
match, enum with tuple - Sample008 - Function with
ifandmatch, andbreakwith value - Sample009 - Function with binding lifetime
- Sample010 - Passing binding ownership to objects
- Sample011 - Passing binding ownership to simple types
- Sample012 - Lifetime
staticvs realstatic - Sample013 - Struct with function implementations
- Sample014 - Enum with
match - Sample015 - Struct with trait implementation using
refanddyn ref - Sample016 - Struct with overloaded trait implementations
- Sample017 - Enum with generic
- Sample018 - Constructor and destructor
- Sample019 - Function returns
Option - Sample020 - Function returns
Result - Sample021 - Loading URLs from file, call them in threads
- Sample022 - Loading URLs from file, call them with
async/await - Sample023 - Loading URLs from file, call then with
async/awaitusingtokio - Sample024 - Tuples with Debug and Display trait
- Sample025 - Arrays and slices
- Sample026 - Enum with tuple and c-like structure, with
typealias andimplfunction - Sample027 - Linked list used
enum, addedfn get() -> u32