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

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 พ.ค. 2024
  • 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  5 หลายเดือนก่อน +4

    📝Get your *FREE Rust cheat sheet* :
    letsgetrusty.com/cheatsheet

  • @discreaminant
    @discreaminant 5 หลายเดือนก่อน +50

    “ref mut” binding is unreasonably effective to fight the borrow checker

    • @Originalimoc
      @Originalimoc 5 หลายเดือนก่อน +5

      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 5 หลายเดือนก่อน +22

    as someone who has been fighting the borrow checker for a week straight, I really needed this

  • @mk72v2oq
    @mk72v2oq 5 หลายเดือนก่อน +21

    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 5 หลายเดือนก่อน +29

    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 4 หลายเดือนก่อน

      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 18 วันที่ผ่านมา

      Ahhh, another soul who shares my pain

  • @InfiniteCoder01
    @InfiniteCoder01 5 หลายเดือนก่อน +21

    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 5 หลายเดือนก่อน +2

      Although technically not very correct; this is a very, very good analogy on how to deal with the borrowchecker :) [IMO]

    • @lufenmartofilia5804
      @lufenmartofilia5804 4 หลายเดือนก่อน

      ​@@djangofakkeldijagreed

    • @kratosgodofwar777
      @kratosgodofwar777 หลายเดือนก่อน

      This is sound advice for all kinds of programming

  • @nice_sprite5285
    @nice_sprite5285 5 หลายเดือนก่อน +6

    Cool copilot ad. How much did they pay u for that

  • @ZacharyHubbellCodes
    @ZacharyHubbellCodes 5 หลายเดือนก่อน +2

    Always happy to see more Rust content from Bogden!

  • @yuriihonchar9336
    @yuriihonchar9336 5 หลายเดือนก่อน +5

    Great video. You are really trying hard to help people to suffer less!

  • @SebastianHasch
    @SebastianHasch 3 หลายเดือนก่อน +2

    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 5 หลายเดือนก่อน

    Yes, a very helpful video. Keep'em coming!

  • @Ansatz66
    @Ansatz66 5 หลายเดือนก่อน +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 5 หลายเดือนก่อน

      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 5 หลายเดือนก่อน +2

      @@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.

  • @erlangparasu6339
    @erlangparasu6339 5 หลายเดือนก่อน

    Great explanation, Thanks!

  • @JavierHarford
    @JavierHarford 5 หลายเดือนก่อน +1

    A man of culture, I too love Berkeley mono

  • @bryandata6658
    @bryandata6658 2 หลายเดือนก่อน

    Thanks - good advice for fighting the BC.

  • @kimdicentalevankim7023
    @kimdicentalevankim7023 5 หลายเดือนก่อน

    Fantastic video!

  • @maxwebstudio
    @maxwebstudio 5 หลายเดือนก่อน +2

    Rust is like a sweet pain.

  • @itsmenewbie03
    @itsmenewbie03 4 หลายเดือนก่อน +1

    Hello, seeing the screenshot in 7:20, it says "33K panonood", are you from PH bro?

  • @jaymartinez311
    @jaymartinez311 5 หลายเดือนก่อน

    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?

  • @taylankammer
    @taylankammer 5 หลายเดือนก่อน +3

    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 5 หลายเดือนก่อน +3

      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 5 หลายเดือนก่อน +1

      @@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 5 หลายเดือนก่อน +2

      @@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 5 หลายเดือนก่อน +3

    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 5 หลายเดือนก่อน

      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 5 หลายเดือนก่อน +1

    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 }

  • @linkernick5379
    @linkernick5379 5 หลายเดือนก่อน +2

    This is SPARUSTA!
    (Mighty kick the compiler error out of here...)
    😅

    • @voidwalker7774
      @voidwalker7774 5 หลายเดือนก่อน +1

      Long live the Kingdom. Long live the king Ferris !!!

  • @DinnelChan
    @DinnelChan 5 หลายเดือนก่อน

    TYSM!

  • @AbelShields
    @AbelShields 5 หลายเดือนก่อน +1

    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.

  • @sunumi
    @sunumi 5 หลายเดือนก่อน

    fun video i liked it thank you

  • @BenjaminWheeler0510
    @BenjaminWheeler0510 5 หลายเดือนก่อน +1

    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 5 หลายเดือนก่อน

      Using the Rc reference counter to manage the connections between structs. (Or Arc if your appliacation is multithreaded.)

  • @codeman99-dev
    @codeman99-dev 5 หลายเดือนก่อน +2

    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.

  • @bend.n
    @bend.n 17 วันที่ผ่านมา

    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.

  • @MrHirenP
    @MrHirenP 5 หลายเดือนก่อน +5

    I don’t get the Starbucks drink = basic reference. someone explain thanks.

    • @PranshuTheGamer
      @PranshuTheGamer 5 หลายเดือนก่อน +1

      people at starbucks miswrite names

    • @SkegAudio
      @SkegAudio 5 หลายเดือนก่อน +5

      Because basic girls order Starbucks 😂

    • @ernesto906
      @ernesto906 5 หลายเดือนก่อน +1

      Me neither but a soy latte maga hat drinker is a funny Paradox 😂

    • @rurunosep
      @rurunosep 5 หลายเดือนก่อน +1

      "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 5 หลายเดือนก่อน

      ​@ernesto906 yes we exist, yes we drink soy lattes. TMYK 🇺🇲☕️

  • @AEStolfo
    @AEStolfo 5 หลายเดือนก่อน

    ty!

  • @sunhsiang6644
    @sunhsiang6644 28 วันที่ผ่านมา

    ChatGPT: Let me battle with rust compiler

  •  5 หลายเดือนก่อน +2

    🤗

  • @knnmran
    @knnmran 5 หลายเดือนก่อน +2

    i think people have exaggerated the borrow checker. in the real life you hardly encounter it.

    • @knnmran
      @knnmran 5 หลายเดือนก่อน +1

      at least in my real life 😅

    • @gralha_
      @gralha_ 5 หลายเดือนก่อน +1

      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 4 หลายเดือนก่อน

    is there an owned type for Chars?

    • @sproccoli
      @sproccoli 3 หลายเดือนก่อน

      individual chars are owned unless you borrow them.

    • @TheRealMangoDev
      @TheRealMangoDev 3 หลายเดือนก่อน

      @@sproccoli … are they?

    • @sproccoli
      @sproccoli 3 หลายเดือนก่อน

      @@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.

  • @senya1296
    @senya1296 5 หลายเดือนก่อน

    Fight me until I death 💀

  • @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…

  • @kuyajj68
    @kuyajj68 5 หลายเดือนก่อน +2

    I don't get it why people is freaking out about th3 borrow checker when the docs clearly explains about it😂

  • @Antagon666
    @Antagon666 3 หลายเดือนก่อน +1

    Switch to C. You cannot fight something that just isn't there.

    • @Heater-v1.0.0
      @Heater-v1.0.0 หลายเดือนก่อน

      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 หลายเดือนก่อน

      @@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 หลายเดือนก่อน

      @@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.

  • @nevokrien95
    @nevokrien95 5 หลายเดือนก่อน

    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 3 หลายเดือนก่อน

      Hard to make. And yes, almost always pointless

  • @Christobanistan
    @Christobanistan 22 วันที่ผ่านมา

    Now I know why Rust is so loved. It's Stockholm Syndrome.

  • @TheSkyGamez
    @TheSkyGamez 5 หลายเดือนก่อน +2

    6:44 ???

    • @xshady2967
      @xshady2967 5 หลายเดือนก่อน

      3. Avoid Battle

    • @shellord
      @shellord 5 หลายเดือนก่อน

      Avoid Rust

    • @TheSkyGamez
      @TheSkyGamez 5 หลายเดือนก่อน

      @@xshady2967 for me error handling falls under making it work

    • @sadramohh
      @sadramohh 4 หลายเดือนก่อน +1

      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 ;)

  • @MichaFita
    @MichaFita 5 หลายเดือนก่อน +3

    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.

  • @poketopa1234
    @poketopa1234 หลายเดือนก่อน

    ngl this video really doesn't explain any rust concepts, just workarounds

  • @Christobanistan
    @Christobanistan 22 วันที่ผ่านมา

    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 20 วันที่ผ่านมา

      90% of the time that's your language telling you that your data structure was bad to begin with.

  • @surajraika7821
    @surajraika7821 5 หลายเดือนก่อน

    I came here for thumbnail only.
    but still not participate in advent of code using best rust practices
    it will be great

  • @Originalimoc
    @Originalimoc 5 หลายเดือนก่อน

    Oh macro😅

  • @kratosgodofwar777
    @kratosgodofwar777 หลายเดือนก่อน

    "Idiomatic Rust" eh?
    Well not to brag or anything but I am much of an idiot myself, a dumb*ss some might say 😎

  • @captainfordo1
    @captainfordo1 5 หลายเดือนก่อน

    I really struggle to understand the appeal of Rust

  • @susabara
    @susabara 5 หลายเดือนก่อน +1

    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.

  • @elorrambasdo5233
    @elorrambasdo5233 5 หลายเดือนก่อน +2

    MAGA 🤧🤧🤧

  • @christiankoch4627
    @christiankoch4627 5 หลายเดือนก่อน +1

    This language is so dump

  • @raidensama1511
    @raidensama1511 5 หลายเดือนก่อน +2

    +1 for MAGA