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