Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Rust: The Complete Developer's Guide, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:02
    Introduction
  2. Урок 2. 00:02:08
    Rust Installation
  3. Урок 3. 00:03:22
    Creating and Running Rust Projects
  4. Урок 4. 00:08:51
    Representing Data with Structs
  5. Урок 5. 00:06:19
    Adding Functionality to Structs
  6. Урок 6. 00:06:12
    Arrays vs Vectors
  7. Урок 7. 00:04:54
    Mutable vs Immutable Bindings
  8. Урок 8. 00:07:59
    Implementations and Methods
  9. Урок 9. 00:03:31
    Implicit Returns
  10. Урок 10. 00:05:50
    Installing External Crates
  11. Урок 11. 00:07:56
    Using Code from Crates
  12. Урок 12. 00:04:17
    Shuffling a Slice
  13. Урок 13. 00:11:13
    Splitting a Vector
  14. Урок 14. 00:04:02
    Project Review
  15. Урок 15. 00:03:10
    Project Overview
  16. Урок 16. 00:03:38
    Defining Structs
  17. Урок 17. 00:04:54
    Adding Inherent Implementations
  18. Урок 18. 00:04:19
    A Mysterious Error
  19. Урок 19. 00:09:20
    Unexpected Value Updates
  20. Урок 20. 00:06:06
    The Goal of Ownership and Borrowing
  21. Урок 21. 00:06:18
    The Basics of Ownership
  22. Урок 22. 00:12:31
    Visualizing Ownership and Moves
  23. Урок 23. 00:01:16
    Exercise Overview
  24. Урок 24. 00:01:39
    Exercise Solution
  25. Урок 25. 00:01:49
    Another Quick Exercise
  26. Урок 26. 00:03:41
    A Quick Exercise Solution
  27. Урок 27. 00:04:39
    Writing Useful Code with Ownership
  28. Урок 28. 00:03:47
    Introducing the Borrow System
  29. Урок 29. 00:08:54
    Immutable References
  30. Урок 30. 00:01:23
    Exercise On References
  31. Урок 31. 00:02:04
    References Exercise Solution
  32. Урок 32. 00:07:50
    Mutable References
  33. Урок 33. 00:01:06
    Exercise on Mutable Refs
  34. Урок 34. 00:06:23
    Solution on Mutable Refs
  35. Урок 35. 00:04:08
    Copy-able Values
  36. Урок 36. 00:07:27
    Basics of Lifetimes
  37. Урок 37. 00:04:52
    Deciding on Argument Types
  38. Урок 38. 00:02:29
    Back to the Bank Impl
  39. Урок 39. 00:06:24
    Implementing Deposits and Withdrawals
  40. Урок 40. 00:06:58
    Accounts and Bank Implementation
  41. Урок 41. 00:01:45
    Project Wrapup
  42. Урок 42. 00:01:26
    Project Overview
  43. Урок 43. 00:06:08
    Defining Enums
  44. Урок 44. 00:01:21
    Declaring Enum Values
  45. Урок 45. 00:08:28
    Adding Implementations to Enums
  46. Урок 46. 00:03:45
    Pattern Matching with Enums
  47. Урок 47. 00:03:00
    When to Use Structs vs Enums
  48. Урок 48. 00:03:49
    Adding Catalog Items
  49. Урок 49. 00:05:53
    Unlabeled Fields
  50. Урок 50. 00:05:33
    The Option Enum
  51. Урок 51. 00:13:10
    Option From Another Perspective
  52. Урок 52. 00:02:51
    Replacing Our Custom Enum with Option
  53. Урок 53. 00:09:37
    Other Ways of Handling Options
  54. Урок 54. 00:01:39
    Excercise Overview
  55. Урок 55. 00:03:15
    Exercise Solution
  56. Урок 56. 00:06:05
    Modules Overview
  57. Урок 57. 00:02:55
    Rules of Modules
  58. Урок 58. 00:08:20
    Refactoring with Multiple Modules
  59. Урок 59. 00:01:35
    Project Overview
  60. Урок 60. 00:02:18
    Reading a File
  61. Урок 61. 00:05:14
    The Result Enum
  62. Урок 62. 00:06:42
    The Result Enum in Action
  63. Урок 63. 00:03:10
    Types of Errors
  64. Урок 64. 00:03:05
    Matching on Results
  65. Урок 65. 00:07:36
    Empty OK Variants
  66. Урок 66. 00:01:30
    Exercise Around the Result Enum
  67. Урок 67. 00:02:51
    Exercise Solution
  68. Урок 68. 00:03:55
    Using a Result When Reading Files
  69. Урок 69. 00:03:47
    Tricky Strings
  70. Урок 70. 00:05:21
    The Stack and Heap
  71. Урок 71. 00:06:27
    Strings, String Refs, and String Slices
  72. Урок 72. 00:10:53
    When to Use Which String
  73. Урок 73. 00:07:49
    Finding Error Logs
  74. Урок 74. 00:11:15
    Understanding the Issue
  75. Урок 75. 00:05:07
    Fixing Errors Around String Slices
  76. Урок 76. 00:04:14
    Writing Data to a File
  77. Урок 77. 00:06:33
    Alternatives to Nested Matches
  78. Урок 78. 00:10:04
    The Try Operator
  79. Урок 79. 00:07:28
    When to Use Each Technique
  80. Урок 80. 00:02:02
    Project Overview
  81. Урок 81. 00:07:12
    Basics of Iterators
  82. Урок 82. 00:04:36
    Using For Loops with Iterators
  83. Урок 83. 00:04:33
    Iterator Consumers
  84. Урок 84. 00:04:47
    Iterator Adaptors
  85. Урок 85. 00:09:28
    Vector Slices
  86. Урок 86. 00:04:47
    Reminder on Ownership and Borrowing
  87. Урок 87. 00:04:39
    Iterators with Mutable Refs
  88. Урок 88. 00:01:15
    Mutable Vector Slices
  89. Урок 89. 00:06:00
    Collecting Elements from an Iterator
  90. Урок 90. 00:08:56
    How Collect Works
  91. Урок 91. 00:06:45
    Moving Ownership With Into_Iter
  92. Урок 92. 00:04:13
    Inner Maps
  93. Урок 93. 00:07:07
    Reminder on Lifetimes
  94. Урок 94. 00:05:46
    Iterators Wrapup
  95. Урок 95. 00:01:06
    Collect Excercise
  96. Урок 96. 00:00:55
    Exercise Solution
  97. Урок 97. 00:00:46
    The Filter Method
  98. Урок 98. 00:01:07
    Filter Solution
  99. Урок 99. 00:02:59
    Lifetime Annotations
  100. Урок 100. 00:04:52
    A Missing Annotation
  101. Урок 101. 00:05:24
    A Review of Borrowing Rules
  102. Урок 102. 00:05:48
    What Lifetime Annotation Are All About
  103. Урок 103. 00:06:21
    Common Questions Around Lifetimes
  104. Урок 104. 00:07:34
    Lifetime Elision
  105. Урок 105. 00:05:44
    Common Lifetimes
  106. Урок 106. 00:04:31
    Project Setup
  107. Урок 107. 00:05:16
    Issues with Number Types
  108. Урок 108. 00:07:18
    The Basics of Generics
  109. Урок 109. 00:04:13
    Trait Bounds
  110. Урок 110. 00:02:28
    Multiple Generic Types
  111. Урок 111. 00:01:45
    Super Solve Flexibility
  112. Урок 112. 00:03:46
    App Overview
  113. Урок 113. 00:06:01
    Building the Basket
  114. Урок 114. 00:05:20
    Generic Structs
  115. Урок 115. 00:05:47
    More on Generic Structs
  116. Урок 116. 00:05:30
    Implementing a trait
  117. Урок 117. 00:02:34
    Generic Trait Bounds