Тёмный

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

Let's Get Rusty
Подписаться 118 тыс.
Просмотров 37 тыс.
50% 1

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

Наука

Опубликовано:

 

16 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 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.
@nice_sprite5285
@nice_sprite5285 6 месяцев назад
Cool copilot ad. How much did they pay u for that
@ZacharyHubbellCodes
@ZacharyHubbellCodes 6 месяцев назад
Always happy to see more Rust content from Bogden!
@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
@yuriihonchar9336
@yuriihonchar9336 6 месяцев назад
Great video. You are really trying hard to help people to suffer less!
@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 ;)
@AlistairClark99
@AlistairClark99 6 месяцев назад
Yes, a very helpful video. Keep'em coming!
@JavierHarford
@JavierHarford 6 месяцев назад
A man of culture, I too love Berkeley mono
@bryandata6658
@bryandata6658 3 месяца назад
Thanks - good advice for fighting the BC.
@erlangparasu6339
@erlangparasu6339 6 месяцев назад
Great explanation, Thanks!
@kimdicentalevankim7023
@kimdicentalevankim7023 6 месяцев назад
Fantastic video!
@maxwebstudio
@maxwebstudio 6 месяцев назад
Rust is like a sweet pain.
@itsmenewbie03
@itsmenewbie03 5 месяцев назад
Hello, seeing the screenshot in 7:20, it says "33K panonood", are you from PH bro?
@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 }
@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.
@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.
@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)
@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?
@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.
@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.
@sunumi
@sunumi 6 месяцев назад
fun video i liked it thank you
@DinnelChan
@DinnelChan 6 месяцев назад
TYSM!
@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.)
@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 !!!
@AEStolfo
@AEStolfo 6 месяцев назад
ty!
@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 🇺🇲☕️
@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.
@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
@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.
@Sylfa
@Sylfa 5 месяцев назад
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 3 месяца назад
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 3 месяца назад
@@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 3 месяца назад
@@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.
6 месяцев назад
🤗
@Christobanistan
@Christobanistan Месяц назад
Now I know why Rust is so loved. It's Stockholm Syndrome.
@kuyajj68
@kuyajj68 6 месяцев назад
I don't get it why people is freaking out about th3 borrow checker when the docs clearly explains about it😂
@senya1296
@senya1296 6 месяцев назад
Fight me until I death 💀
@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.
@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
@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 5 месяцев назад
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 ;)
@poketopa1234
@poketopa1234 2 месяца назад
ngl this video really doesn't explain any rust concepts, just workarounds
@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
@Originalimoc
@Originalimoc 6 месяцев назад
Oh macro😅
@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 😎
@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.
@captainfordo1
@captainfordo1 6 месяцев назад
I really struggle to understand the appeal of Rust
@christiankoch4627
@christiankoch4627 6 месяцев назад
This language is so dump
@elorrambasdo5233
@elorrambasdo5233 6 месяцев назад
MAGA 🤧🤧🤧
@raidensama1511
@raidensama1511 6 месяцев назад
+1 for MAGA
Далее
Understanding Ownership in Rust
25:31
Просмотров 240 тыс.
The magic of Rust's type system
9:01
Просмотров 70 тыс.
Best ASMR 😳
00:26
Просмотров 20 тыс.
but what is 'a lifetime?
12:20
Просмотров 59 тыс.
8 deadly mistakes beginner Rust developers make
14:14
Просмотров 156 тыс.
Fatal C error took her life
10:07
Просмотров 22 тыс.
Should you learn Rust in 2024?
8:33
Просмотров 93 тыс.
All Rust string types explained
22:13
Просмотров 148 тыс.
Programming War Crimes | Prime Reacts
10:36
Просмотров 329 тыс.
Rust Branching - if let, match
9:21
Просмотров 26 тыс.
Deploy your Rust project in 20 minutes
20:29
Просмотров 44 тыс.
WHY IS THE STACK SO FAST?
13:46
Просмотров 135 тыс.
Для фанатов SEGA MEGADRIVE - Anbernic RG ARC
14:23
keren sih #iphone #apple
0:16
Просмотров 1,7 млн