1. Урок 1. 00:03:33
    Course Introduction
  2. Урок 2. 00:02:41
    Installing and Configuring Rust
  3. Урок 3. 00:03:32
    Hello, Rust!
  4. Урок 4. 00:08:00
    Introducing the Cargo Package Manager
  5. Урок 5. 00:06:54
    Rust in IntelliJ IDEA
  6. Урок 6. 00:26:00
    Numbers on the Computer
  7. Урок 7. 00:03:02
    Application Entrypoint
  8. Урок 8. 00:16:13
    Core Data Types
  9. Урок 9. 00:10:26
    Operators
  10. Урок 10. 00:06:14
    Scope and Shadowing
  11. Урок 11. 00:04:33
    Declaring and Using Constants
  12. Урок 12. 00:12:25
    Stack and Heap
  13. Урок 13. 00:07:21
    If Statement
  14. Урок 14. 00:04:09
    While and Loop
  15. Урок 15. 00:04:48
    For Loops
  16. Урок 16. 00:05:26
    Match Statement
  17. Урок 17. 00:09:14
    Combination Lock
  18. Урок 18. 00:03:41
    Structs
  19. Урок 19. 00:09:00
    Enumerations
  20. Урок 20. 00:08:43
    Unions
  21. Урок 21. 00:05:26
    Option<T> and if let/while let
  22. Урок 22. 00:13:04
    Arrays
  23. Урок 23. 00:05:27
    Slices
  24. Урок 24. 00:09:32
    Tuples
  25. Урок 25. 00:11:51
    Pattern Matching
  26. Урок 26. 00:05:55
    Generics
  27. Урок 27. 00:03:48
    Overview
  28. Урок 28. 00:13:10
    Vec(tor)
  29. Урок 29. 00:07:27
    HashMap
  30. Урок 30. 00:11:47
    HashSet
  31. Урок 31. 00:11:01
    Strings
  32. Урок 32. 00:07:44
    String Formatting (format!)
  33. Урок 33. 00:08:08
    Number Guessing Game
  34. Урок 34. 00:06:39
    Functions and Function Arguments
  35. Урок 35. 00:02:59
    Methods
  36. Урок 36. 00:10:49
    Closures
  37. Урок 37. 00:09:56
    Higher-Order Functions
  38. Урок 38. 00:12:42
    Traits
  39. Урок 39. 00:06:51
    Trait Parameters
  40. Урок 40. 00:06:00
    Into
  41. Урок 41. 00:06:00
    Drop
  42. Урок 42. 00:16:50
    Operator Overloading
  43. Урок 43. 00:06:33
    Static Dispatch
  44. Урок 44. 00:03:08
    Dynamic Dispatch
  45. Урок 45. 00:05:05
    Why Dynamic Dispatch?
  46. Урок 46. 00:09:30
    Vectors of Different Objects
  47. Урок 47. 00:08:32
    Ownership
  48. Урок 48. 00:07:13
    Borrowing
  49. Урок 49. 00:07:51
    Lifetime
  50. Урок 50. 00:04:42
    Lifetime in Structure Implementation
  51. Урок 51. 00:06:29
    Reference-Counted Variables (Rc)
  52. Урок 52. 00:03:58
    Atomic Reference-Counted Variables (Arc)
  53. Урок 53. 00:07:06
    Using a Mutex for Thread-Safe Mutability
  54. Урок 54. 00:25:13
    Circular References
  55. Урок 55. 00:04:48
    Spawning and Joining Threads
  56. Урок 56. 00:05:05
    Consuming Crates
  57. Урок 57. 00:11:30
    Building Modules and Crates
  58. Урок 58. 00:04:43
    Testing
  59. Урок 59. 00:06:04
    Comments and Documentation