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