How to fight Rust's borrow checker... and win.

  Рет қаралды 37,058

Let's Get Rusty

Let's Get Rusty

Күн бұрын

Getting bombarded with compile time errors is all too common when writing Rust. Today we'll learn how to fight borrow checker errors and win!
Free Rust cheat sheet: letsgetrusty.com/cheatsheet
Idiomatic Rust playlist: • Idiomatic Rust - Const...
Idiomatic Rust Github Repo: github.com/mre/idiomatic-rust

Пікірлер: 94
@letsgetrusty
@letsgetrusty 6 ай бұрын
📝Get your *FREE Rust cheat sheet* : letsgetrusty.com/cheatsheet
@discreaminant
@discreaminant 6 ай бұрын
“ref mut” binding is unreasonably effective to fight the borrow checker
@Originalimoc
@Originalimoc 6 ай бұрын
Because it does not take ownership when you pattern match it, but fun enough pattern matching itself consider borrowed T, &T as a separate type than T. So it's like borrow checker not being there if the code is not multithreaded.
@Dev-Siri
@Dev-Siri 6 ай бұрын
as someone who has been fighting the borrow checker for a week straight, I really needed this
@InfiniteCoder01
@InfiniteCoder01 6 ай бұрын
When you rust, each time you borrow or partial move, you run a wire, from the place where you borrow/move, to the place where you last use it. The longer the wire, the weaker it is, it hangs lower and lower. The weaker the wire, the more borrow checker will try to break it. Especially, where there is more than one such wire. To protect yourself from this behaviour, you either run short strong cables, isolate cables with Rc and Arc, or use wireless connection, by storing (for example) an index into a vector, or using just a field of a struct every time instead of borrowing it. I don't speak English natively, sorry for any mistakes. You can correct me in the replies section :)
@djangofakkeldij
@djangofakkeldij 6 ай бұрын
Although technically not very correct; this is a very, very good analogy on how to deal with the borrowchecker :) [IMO]
@lufenmartofilia5804
@lufenmartofilia5804 5 ай бұрын
​@@djangofakkeldijagreed
@kratosgodofwar777
@kratosgodofwar777 2 ай бұрын
This is sound advice for all kinds of programming
@mk72v2oq
@mk72v2oq 6 ай бұрын
Yeah, that's what I say every time. If you struggle with the borrow checker in one particular place, just slap Rc/Arc there. You can always deal with it later, when you'll become more proficient. And overhead will be negligible most of the time. Of course it is better to properly understand the borrow checker, but it is not a critical necessity.
@631kw
@631kw 6 ай бұрын
The biggest takeaway is avoiding battle. Even though I don't know enough rust, the code in 6:47 looks ugly, but it is right to start simple. I usually have a strong urge to write 'clean' code. It would take so much time just to validate the core logic, and all the cleanliness is wasted. I need to resist the temptation of premature optimisation. Focus on MVP, then refactoring and optimisation.
@lufenmartofilia5804
@lufenmartofilia5804 5 ай бұрын
Yeah I have this same issue, where if I don't make it clean or optimize fast enough, the spagetti mess will come to quick. I guess it's about finding balance
@futotta-neko
@futotta-neko Ай бұрын
Ahhh, another soul who shares my pain
@nice_sprite5285
@nice_sprite5285 6 ай бұрын
Cool copilot ad. How much did they pay u for that
@SebastianHasch
@SebastianHasch 4 ай бұрын
I have tried rust once and failed miserably. After bbout a week of pain with the compiler I've decided to just let it go but I'm thinking about giving it a try again. Your videos (and the whole rust community, obviously) make it seem not that difficult and I just wanted to say thank you for what you have gifted us with your videos! Hope you're doing well ;)
@ZacharyHubbellCodes
@ZacharyHubbellCodes 6 ай бұрын
Always happy to see more Rust content from Bogden!
@yuriihonchar9336
@yuriihonchar9336 6 ай бұрын
Great video. You are really trying hard to help people to suffer less!
@JavierHarford
@JavierHarford 6 ай бұрын
A man of culture, I too love Berkeley mono
@AlistairClark99
@AlistairClark99 6 ай бұрын
Yes, a very helpful video. Keep'em coming!
@bryandata6658
@bryandata6658 3 ай бұрын
Thanks - good advice for fighting the BC.
@erlangparasu6339
@erlangparasu6339 6 ай бұрын
Great explanation, Thanks!
@maxwebstudio
@maxwebstudio 6 ай бұрын
Rust is like a sweet pain.
@taylankammer
@taylankammer 6 ай бұрын
At around 3:10 it would have been great to have an example of how the code can break if `set_id()` does something with `posts`. As a Rust noob, it's not self-evident to me, and I'm struggling to come up with an example, due to my limited understanding of Rust...
@SophieJMore
@SophieJMore 6 ай бұрын
That essentially leads to 2 mutable references to the same memory, that's undefined behavior in Rust. So, for an example of how 2 mutable references can break code, imagine you took a mutable reference to posts inside of main and then set the first element to String::from("Hello"). You then call set_id(), which maliciously sets the first element of posts to String::from("Goodbye"). Then you attempt to print the first element of posts. What you might expect is it printing "Goodbye". But, not only, this might be confusing, the compiler also assumes that there is at most only one mutable reference to any value at any given time, and it uses it to elide reads. So, at the end, in a release build, the compiler might reason that, since we've just set the first element to "Hello" and no other mutable reference to posts exists (incorrect in this case), then we don't really need to read the first element, we know what it is already, so it would print "Hello".
@taylankammer
@taylankammer 6 ай бұрын
@@SophieJMore Thanks for the example. Is there a situation in which it could lead to a segfault, too? (If the compiler didn't forbid the whole situation.) For example, could `set_id()` do something that amounts to (in C terms) calling `free()` on `posts` or an element of `posts`? I guess it could set `posts` to a completely new Vector, thus having the old Vector deallocated, while the code in main still holds a reference to the old Vector; is that plausible?
@InfiniteCoder01
@InfiniteCoder01 6 ай бұрын
@@SophieJMore The actual problem with this code is that posts are not borrowed, but moved. I don't know, how moving really works, but if it actually MOVES, then posts in the struct should be an invalid memory (For Vec it's especially dangerous, because the Vec itself just stores a pointer to data and length, so if you try to mutate the data that invalidated pointer points to, you'll get a segfault)
@DJenriqez
@DJenriqez 6 ай бұрын
Yeah, my code is fine, but when working with external libraries real fight begins,... but anyway you are kind of optimistic, usually I don't get a lot of help from AI in things of rust (but tried only ChatGPT and bard, never tried copilot)
@kevinmcfarlane2752
@kevinmcfarlane2752 6 ай бұрын
I’ve actually used AI quite a bit now and it has definitely helped me learn and improve my code. I recommend Phind, as it specialises in dev and tech stuff and provides good links and you get some free access to GPT-4. Also Perplexity. Both provide links as well. A free alternative to Copilot is Codeium, which is cross-IDE. I used it on my Rust a couple of days ago and learnt something.
@sharperguy
@sharperguy 6 ай бұрын
Is it bad that I use Arc just to avoid having to sprinkle lifetime generics all over my struct? I'd rather have struct Object { config: Arc } than struct Object { config: &'a ObjectConfig }
@BenjaminWheeler0510
@BenjaminWheeler0510 6 ай бұрын
it bugs me that "advanced data structures" like a linked list are so difficult when many problems map to link-based data structures intuitively :( what's the general solution here? Let's say I want to use a tree, or a graph, or a linked list.
@adrianbool4568
@adrianbool4568 6 ай бұрын
Using the Rc reference counter to manage the connections between structs. (Or Arc if your appliacation is multithreaded.)
@itsmenewbie03
@itsmenewbie03 5 ай бұрын
Hello, seeing the screenshot in 7:20, it says "33K panonood", are you from PH bro?
@jaymartinez311
@jaymartinez311 6 ай бұрын
is using to_owned or to_string everywhere good or bad? Yes i’m lost 😂 i’m thinking i’m making clones everywhere. So idk in terms for backend development it’s bad. I’ve never used clone but i guess im cloning stuff anyway with the functions i mentioned right?
@Ansatz66
@Ansatz66 6 ай бұрын
The biggest trick to win against the borrow checker is to avoid borrowing things. There is no borrow checker if there are no borrows. If you want a long-lived pointer, make it an Rc RefCell. It is so easy. In Rust as in life, only borrow things when you plan to give them back promptly.
@somebodyelse9130
@somebodyelse9130 6 ай бұрын
Oftentimes, it will make more sense and be more efficient to store a reference rather than a copy, even if a copy is still possible. For example, if you're writing a parser, it would make more sense for a "struct parser" to store a reference to the input string rather than to make a copy of it.
@Ansatz66
@Ansatz66 6 ай бұрын
@@somebodyelse9130 : You make it sound like our only choices are to either borrow or copy. The whole point of Rc is that it allows us to have pointers that are not borrows, and no one suggests that we should make copies.
@AbelShields
@AbelShields 6 ай бұрын
5:51 isn't the solution provided incorrect? I mean sure, it technically ensures the data outlives the spawned task, but iirc that's not accepted by the borrow checker.
@codeman99-dev
@codeman99-dev 6 ай бұрын
Again, Borrowing rule #1 is poorly stated. When using a mutable reference, all operations with that reference must be completed before the next reference is created.
@MrHirenP
@MrHirenP 6 ай бұрын
I don’t get the Starbucks drink = basic reference. someone explain thanks.
@PranshuTheGamer
@PranshuTheGamer 6 ай бұрын
people at starbucks miswrite names
@SkegAudio
@SkegAudio 6 ай бұрын
Because basic girls order Starbucks 😂
@ernesto906
@ernesto906 6 ай бұрын
Me neither but a soy latte maga hat drinker is a funny Paradox 😂
@rurunosep
@rurunosep 6 ай бұрын
"Basic" is slang to describe someone (usually a girl) that just likes and does mainstream things. Think of a blonde, white girl that drinks Starbucks and listens to Taylor Swift, just like all her friends and tens of thousands of other girls, for example.
@bobbobertson9325
@bobbobertson9325 6 ай бұрын
​@ernesto906 yes we exist, yes we drink soy lattes. TMYK 🇺🇲☕️
@kimdicentalevankim7023
@kimdicentalevankim7023 6 ай бұрын
Fantastic video!
@sunhsiang6644
@sunhsiang6644 Ай бұрын
ChatGPT: Let me battle with rust compiler
@bend.n
@bend.n Ай бұрын
borrowck checking functions wont increase comptime-- what it will add is a semver hazard, as all the information of a function isnt in its signature.
@linkernick5379
@linkernick5379 6 ай бұрын
This is SPARUSTA! (Mighty kick the compiler error out of here...) 😅
@voidwalker7774
@voidwalker7774 6 ай бұрын
Long live the Kingdom. Long live the king Ferris !!!
@DinnelChan
@DinnelChan 6 ай бұрын
TYSM!
@knnmran
@knnmran 6 ай бұрын
i think people have exaggerated the borrow checker. in the real life you hardly encounter it.
@knnmran
@knnmran 6 ай бұрын
at least in my real life 😅
@gralha_
@gralha_ 6 ай бұрын
That depends a lot on the kind of program you're making. I hit the borrow checker almost every day, but it's usually not a problem to just go around it by cloning or breaking a large struct into smaller parts
@sunumi
@sunumi 6 ай бұрын
fun video i liked it thank you
@AEStolfo
@AEStolfo 6 ай бұрын
ty!
@TheRealMangoDev
@TheRealMangoDev 5 ай бұрын
is there an owned type for Chars?
@sproccoli
@sproccoli 4 ай бұрын
individual chars are owned unless you borrow them.
@TheRealMangoDev
@TheRealMangoDev 4 ай бұрын
@@sproccoli … are they?
@sproccoli
@sproccoli 4 ай бұрын
@@TheRealMangoDev yes. they just implement copy , so they are cloned rather than moved when you assign them without a borrow. each copy still has a lifetime and can be borrowed\moved. the defaults are just different. you really cannot have an 'unowned' type.
6 ай бұрын
🤗
@Sylfa
@Sylfa 4 ай бұрын
Anyone else distracted by the "fight scene" in the background at 3:28? He throws his only spear, then doesn't raise his shield, and the other one jumps making them unable to change their trajectory. It's just bad choreography on both sides…
@Antagon666
@Antagon666 4 ай бұрын
Switch to C. You cannot fight something that just isn't there.
@Heater-v1.0.0
@Heater-v1.0.0 2 ай бұрын
True that. Problem is that having no borrow checker C is free to fight you in all kind of devious ways. At least C does not delude you about that so much. C++ is much more devious
@Antagon666
@Antagon666 2 ай бұрын
@@Heater-v1.0.0 C does exactly what you tell it to do, and not the other way around.
@Heater-v1.0.0
@Heater-v1.0.0 2 ай бұрын
@@Antagon666 Indeed it does. And that is exactly the problem. More often than we care to admit what we tell C to do is not what we intended to to tell it to do. Due to some silly mistake or other. For example this week I sent too much time trying to find out why my C code which worked on my PC and worked on my ARM based McBook did not work on an embedded ARM system running Linux. Turned out I had made an error which caused some malloced memory to not be properly initialised. Rust would never have allowed that silly mistake in the first place. A lot of time would have been saved. Don't get me wrong, I'm still happy to use C and appreciate it very much for what it is. But I do also appreciate the advantages that Rust gives. I even more appreciate that the Rust version of the code I was talking about is faster! It is wrong to imply that Rust tells anyone what to do. It clearly does not.
@senya1296
@senya1296 6 ай бұрын
Fight me until I death 💀
@TheSkyGamez
@TheSkyGamez 6 ай бұрын
6:44 ???
@xshady2967
@xshady2967 6 ай бұрын
3. Avoid Battle
@shellord
@shellord 6 ай бұрын
Avoid Rust
@TheSkyGamez
@TheSkyGamez 6 ай бұрын
@@xshady2967 for me error handling falls under making it work
@sadramohh
@sadramohh 4 ай бұрын
Yeah the third point really sounds odd. I know where he comes from, but the way he put it, you get the impression "to avoid having ha hard time using rust, just ignore the difficult parts" which is basically just ignoring the issue. I also have a small gut feeling he might have deliberately made the third point sound a little controversial so people correct him in the comments ;)
@nevokrien95
@nevokrien95 6 ай бұрын
Is a linked list hard to make or hard to use? Like ik from playing around in c whenever u think "hey a linked list can be nice and fast here" u r usually wrong. U also usually screw urself over with how annoying it is to work with a data structure that doesn't let u just go to index
@Turalcar
@Turalcar 4 ай бұрын
Hard to make. And yes, almost always pointless
@kuyajj68
@kuyajj68 6 ай бұрын
I don't get it why people is freaking out about th3 borrow checker when the docs clearly explains about it😂
@Christobanistan
@Christobanistan Ай бұрын
Now I know why Rust is so loved. It's Stockholm Syndrome.
@poketopa1234
@poketopa1234 2 ай бұрын
ngl this video really doesn't explain any rust concepts, just workarounds
@MichaFita
@MichaFita 6 ай бұрын
Fighting your friend is showing bad attitude. The whole rethoric of "fighting" is plain wrong. This is sending wrong signal to all unexperienced apprentices of Rust.
@Christobanistan
@Christobanistan Ай бұрын
5: reread the Rust Book. 6: ask someone else Also, I hear this suggestion to change data structures all the time, and I think it's bad advice. Honestly, if you're changing your algorithm to avoid language issues, you're using the wrong language.
@ysxbel
@ysxbel Ай бұрын
90% of the time that's your language telling you that your data structure was bad to begin with.
@surajraika7821
@surajraika7821 6 ай бұрын
I came here for thumbnail only. but still not participate in advent of code using best rust practices it will be great
@kratosgodofwar777
@kratosgodofwar777 2 ай бұрын
"Idiomatic Rust" eh? Well not to brag or anything but I am much of an idiot myself, a dumb*ss some might say 😎
@Originalimoc
@Originalimoc 6 ай бұрын
Oh macro😅
@captainfordo1
@captainfordo1 6 ай бұрын
I really struggle to understand the appeal of Rust
@susabara
@susabara 6 ай бұрын
at 1:17,why do you use a neo fascist neo feudal symbol to signify conservative? border patrol or immigration officer would be less loaded.
@christiankoch4627
@christiankoch4627 6 ай бұрын
This language is so dump
@elorrambasdo5233
@elorrambasdo5233 6 ай бұрын
MAGA 🤧🤧🤧
@raidensama1511
@raidensama1511 6 ай бұрын
+1 for MAGA
The magic of Rust's type system
9:01
Let's Get Rusty
Рет қаралды 70 М.
8 deadly mistakes beginner Rust developers make
14:14
Let's Get Rusty
Рет қаралды 155 М.
Универ. 13 лет спустя - ВСЕ СЕРИИ ПОДРЯД
9:07:11
Комедии 2023
Рет қаралды 2,1 МЛН
1🥺🎉 #thankyou
00:29
はじめしゃちょー(hajime)
Рет қаралды 80 МЛН
They RUINED Everything! 😢
00:31
Carter Sharer
Рет қаралды 20 МЛН
120x Faster Algorithm By Nested Loops
21:21
ThePrimeTime
Рет қаралды 332 М.
but what is 'a lifetime?
12:20
leddoo
Рет қаралды 58 М.
Rust Interior Mutability - Sneaking By The Borrow Checker
16:02
Code to the Moon
Рет қаралды 63 М.
Understanding Ownership in Rust
25:31
Let's Get Rusty
Рет қаралды 239 М.
Rust: When C Code Isn't Enough
8:26
CodeAhead
Рет қаралды 152 М.
How to read complicated Rust types
20:17
chris biscardi
Рет қаралды 50 М.
Rust Branching - if let, match
9:21
Code to the Moon
Рет қаралды 26 М.
Rust's lifetimes made easy
6:39
timClicks
Рет қаралды 9 М.
Golang is BAD for SMART PEOPLE
27:25
ThePrimeTime
Рет қаралды 245 М.
All Rust string types explained
22:13
Let's Get Rusty
Рет қаралды 147 М.
How much charging is in your phone right now? 📱➡️ 🔋VS 🪫
0:11
ЭТОТ ЗАБЫТЫЙ ФЛАГМАН СИЛЬНО ПОДЕШЕВЕЛ! Стоит купить...
12:54
Thebox - о технике и гаджетах
Рет қаралды 157 М.