Rust Modules - Explained Like I'm 5

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 201

  • @letsgetrusty
    @letsgetrusty  2 ปีที่แล้ว +14

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

    • @Xeros08
      @Xeros08 2 ปีที่แล้ว +2

      I got mine, tho I don't like mailing lists too much :/

    • @LordOfWizardurl
      @LordOfWizardurl 2 ปีที่แล้ว

      Loving the cheat sheet..i keep open on a tab always

    • @robicjedi
      @robicjedi 2 ปีที่แล้ว

      indeed, I would have liked to checked it out, but don't want to sign up to anything

    • @PandaNuker
      @PandaNuker 2 ปีที่แล้ว +1

      really love the cheatsheet! is there any chance a v2 is planned (simply a bit more readable / good looking / maybe dark themed?)
      Thanks for your videos! loving it

    • @dazealex
      @dazealex 2 ปีที่แล้ว

      Hate the signup mailing list. So skipped the cheatsheet.

  • @scheimong
    @scheimong 2 ปีที่แล้ว +245

    Honestly speaking this is probably the single most confusing aspect of Rust I faced, much more so than the whole ownership thing. I think it might be down to how little attention it was given in various Rust learning resources (Rust Book in particular). It took me several months of scratching my head and smushing my face into the screen, combined with extensive experimenting on my personal projects for me to fully understand the whole system, and you sir managed to do it under 20 minutes. God damn. Mad respect.

    • @gritcrit4385
      @gritcrit4385 2 ปีที่แล้ว +4

      Yeah, same here.

    • @LucasVieira42
      @LucasVieira42 2 ปีที่แล้ว +1

      This!!!!

    • @r3ddr4gon80
      @r3ddr4gon80 2 ปีที่แล้ว +1

      Same :) This video is absolutely awesome!

    • @flogginga_dead_horse4022
      @flogginga_dead_horse4022 2 ปีที่แล้ว +1

      me too!!

    • @daniilgumirov6654
      @daniilgumirov6654 2 ปีที่แล้ว +4

      Thanks God I was able to find the video in only a week of smashing the face into the screen...

  • @----__---
    @----__--- 2 ปีที่แล้ว +42

    I have read many blogs before getting the gist of the module system of rust. Actually the only thing I needed was this video lol

  • @ChumX100
    @ChumX100 2 ปีที่แล้ว +56

    It's nice that you've kept the format of videos on fundamentals similar to your coverage of the rust book, it's like having an extended version!

  • @shirazbabar8892
    @shirazbabar8892 ปีที่แล้ว +5

    Oh, man, you saved me! I was about to give up and head back home because I was overwhelmed by the complexity of these modules. But then I stumbled upon you, and now I feel like I'm back in a playground, ready to tackle anything

  • @stevemccauley
    @stevemccauley ปีที่แล้ว +2

    A great video, that's cleared the a major point of confusion up for me. It's like 'use' has been overridden, like 'static' in C - for external module use, it's 'importing' and 'simplifying' external crate components, whereas for local modules it's merely 'simplifying' part of the local module. So subtly different actions, but with the same name. You've clarified that for me, so thanks!

  • @michaelkastner3611
    @michaelkastner3611 2 ปีที่แล้ว +4

    This is by far the best explanation of Rust module system I've seen (or read) so far. Very thoroughly explained. I've reentered the Rust orbit after almost two years again and had forgotten about the intricacies of the Rust module concept in the mean time. Now I feel like I am back on track again. This video is pure gold. Thanks!

  • @scott3489
    @scott3489 2 ปีที่แล้ว +37

    Excellent video! Really appreciate how you broke this down.

  • @nilshaberstroh2705
    @nilshaberstroh2705 2 ปีที่แล้ว +4

    I've googled "ho to use modules in Rust" so so many time. It is a pleasure to see such a useful, straight forward explanation on that topic.
    loop { 👍}

  • @naughtrussel5787
    @naughtrussel5787 2 ปีที่แล้ว +23

    Yeah, the modules did confuse me a lot. During this video I was thinking: "Oh, okay, now I finally get it. How great he explains it so clear." and then I remember that the video is actually called "Explained Like I'm 5". Now I feel I have to study programming as if I was five :-D

  • @seyeakintunde8225
    @seyeakintunde8225 2 ปีที่แล้ว +5

    I was reading Chapter 7 of the Rust Book and found the example a little confusing so I searched for an alternative source of information abuot modules in Rust. This was just what I needed. Thank a lot Rusty!!!

  • @emcell2
    @emcell2 ปีที่แล้ว +1

    God, thank you. I was so confused about modules. Having read dozens of documents about this topic getting even more confused. Now everything makes sense.

  • @hilsonalexandrejuniorwojci9028
    @hilsonalexandrejuniorwojci9028 2 ปีที่แล้ว +2

    Thank you. I
    think that this video is much more informative than the module episode of the rust book series and the chapter of the rust book itself!!
    I was bugged thinking about a module not "export itself" but being declared in the parent module

  • @andydataguy
    @andydataguy 2 ปีที่แล้ว +7

    You're a legend. Learning Rust as my first coding language and am going to binge watch your videos to help accelerate the process. Thank you so much for taking the time to put these videos together 🙌🏾🙏🏾🔥

    • @Helvanic
      @Helvanic 2 ปีที่แล้ว +7

      Rust is not the easiest way to learn coding, but it will certainly help you in the long run. Good luck !

  • @jonathanmoore5619
    @jonathanmoore5619 2 ปีที่แล้ว +6

    Perfect screen size / text. Great video.

  • @mingyuchoo
    @mingyuchoo ปีที่แล้ว +1

    You made these easy for me to understand. Now I understand how Rust's module system works. thank you.

  • @DipsAndPushups
    @DipsAndPushups ปีที่แล้ว +1

    This is the best explanation that I have found so far. Rust modules were a little bit confusing because they work differently from how organisation of code world in other languages.

  • @soma_rc
    @soma_rc ปีที่แล้ว +1

    Wathed 3 tuturials. This one clearly stands out! 👍

  • @Mirusim
    @Mirusim 2 ปีที่แล้ว +8

    As a JS developer I need more videos like this. Thanks

  • @errons1
    @errons1 2 ปีที่แล้ว +1

    Many might already have said this, but this was the achilles heel of my rust experience so far...
    Thank you very much for making this video!

  • @sunitjoshi3573
    @sunitjoshi3573 10 หลายเดือนก่อน +1

    Nice and detailed explanation of a confusing subject in Rust! I'll still have to play around a bit...but this was really insightful !

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

    you've got a subscriber! exactly what i needed! was with that strange feeling you've mentioned while reading The Book, now it feels clear.

  • @cmkjfnve
    @cmkjfnve 2 ปีที่แล้ว +2

    👍Great job! I'd like to learn more about benchmarking/profiling of Rust code. Another thing that is confusing is why we need to write anon lifetime specifier _ (underline) . I see it in very often in trait/struct decl/def.

  • @farzadmf
    @farzadmf 2 ปีที่แล้ว +3

    AMAZING explanation and step-by-step tutorial, thank you!

  • @islamibrahim8121
    @islamibrahim8121 2 ปีที่แล้ว +1

    Hi! Please include this video in the let's get rusty tutorial series. It's really helpful in visualizing the module system, especially the refactoring approach you took. And exploring the 2018 pattern (came across this in the wild and I was quite confused )

  • @kevincarvalhodejesus4473
    @kevincarvalhodejesus4473 ปีที่แล้ว

    That's precisely what i needed, a simple, concise and comprehensive explanation. Now i got it, thanks a lot!

  • @henrikdjurestal6947
    @henrikdjurestal6947 2 ปีที่แล้ว +1

    Excellent pace of the video. These videos are perfect as I try to learn and start using Rust!

  • @godoftheLTD
    @godoftheLTD 2 ปีที่แล้ว +2

    THANK YOU for this! Modules finally clicked for me!
    Request: a similar video (or videos) breaking down Cargo crates. For example, crates with multiple binaries and projects with nested Cargo configs.

  • @RakavyYuval
    @RakavyYuval 2 ปีที่แล้ว +6

    It would be nice if you cover cross development and debugging for the Raspberry Pi
    and it would also be nice to cover using Rust for embedded systems (no runtime), for example on Arduino.

  • @sebastianconcept
    @sebastianconcept 2 ปีที่แล้ว

    Okay, convoluted conventions but once understood they make sense and feel clean and powerful enough to maintain code properly factored and under control.
    Thanks a lot for making this video, it was a day saver!

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

    The best explanation about Rust´s module system I got! This is all really confusing, but now it seems to make some sense 😊 Thank you!

  • @AK-vx4dy
    @AK-vx4dy ปีที่แล้ว +1

    Very good explanation!
    Modules should be explaind again and again beacuse they are vital part of rust encapsulation approach.

  • @jhoughjr1
    @jhoughjr1 ปีที่แล้ว +1

    It seems in 2023, you need to run " cargo modules --with-types --with-fns " to get the same output as shown in the video.
    Went on a detour trying to see why my output differed and that was the result.

  • @Anonim27121996
    @Anonim27121996 2 ปีที่แล้ว +1

    Your explaination was perfect! Great job

  • @cjmeyer429
    @cjmeyer429 2 ปีที่แล้ว

    Great topic! Took something that can be difficult to understand and presented it in a simple step by step presentation! My favorite!

  • @InMemoryOfNeo
    @InMemoryOfNeo ปีที่แล้ว +1

    awesome video. this is what I want to know. there are some minor differences then javascript but rust's module system is more effective and sense I think.

  • @drlytwatcher2646
    @drlytwatcher2646 2 ปีที่แล้ว +1

    Really well described! I'd love if you could make a video about async/await as well as how it differs from its implementation in more popular languages like Javascript. This topic has always been tricky to wrap my head around. I think a lot of viewers would benefit from a solid explanation LGR style :)

  • @kim4857-u7j
    @kim4857-u7j 2 ปีที่แล้ว +1

    Nice video! Now I finally understand the Rust modules and project structure. As there are 2 approaches mentioned in this video to struct the modules and project files, may I know which one approach is more popular or is most used in the practice? Thanks a lot!

  • @ykhi
    @ykhi 2 ปีที่แล้ว

    This is such a helpful channel whenever I try to learn a bit more about rust thank you!

  • @mikecu2249
    @mikecu2249 ปีที่แล้ว

    HOLY COW , this is TEH hands down best explenation on the net for Rust Newcommers! This Explains Use vs Mod perfect! Thank you so much!

  • @malnek12
    @malnek12 ปีที่แล้ว

    Thank you for this quick explanation, much appreciated.

  • @harrymiller7559
    @harrymiller7559 2 ปีที่แล้ว +2

    cool - now I am able to structure my code into models. Thank you.
    It would be fine to learn something about testing in Rust.

  • @ravipasumarthy8732
    @ravipasumarthy8732 2 ปีที่แล้ว +1

    Kindly cover some (design) patterns in how to export rust functions to swift and kotlin via FFI. Thank you, your video on rust modules is very helpful.

  • @delir0
    @delir0 ปีที่แล้ว

    One of the most important and useful videos in Rust learning. Many thanks!

  • @jamiehagerty6732
    @jamiehagerty6732 2 ปีที่แล้ว

    Amazing Video. Out of so many I've watched on this topic, this is the one that made everything click for me. Thank you

  • @sagnikbhattacharya1202
    @sagnikbhattacharya1202 2 ปีที่แล้ว +3

    Very very very useful!!! Next could you please cover conditional compilation, build flags, build.rs, etc.? Thanks a lot

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

    Really nice well rounded and concise presentation, thanks!

  • @scheimong
    @scheimong 2 ปีที่แล้ว +2

    I bet this will be your most popular video in 5 years time. Graet job.

  • @ukaszferenc5249
    @ukaszferenc5249 2 ปีที่แล้ว

    I am getting into programming and learning Rust, I think it's pleasantly elegant!

  • @marcocaspers3136
    @marcocaspers3136 ปีที่แล้ว

    If you try this today, you need to install cargo-modules using this command: cargo install cargo-modules --locked. It won't work any other way. It needs to install a million things and some of those things don't play nice together dependency wise.
    Also, the command to use to generate the try with types is now: cargo modules generate tree --types, The author(s) of cargo-modules have seemingly introduced several feature breaking changes on top of creating the dependancy nightmare that makes dll hell pale in comparison.

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

      It did install for me without appending the --locked flag, but the subcommands are totally different

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

    Good stuff. The chapter in the Rust book needs this sort of example-based explanation as well as comparisons to other languages lol

  • @kumaraguru.m6205
    @kumaraguru.m6205 7 หลายเดือนก่อน

    Awesome , Clear understanding ❤ Thanks for this video 🎉

  • @sederonveyll8409
    @sederonveyll8409 ปีที่แล้ว

    Great video and channel in general, you answered all my questions i had.

  • @rootkill1581
    @rootkill1581 2 ปีที่แล้ว +1

    Rust Made Easy with Let's Get Rusty! you made it really easy to understand!

  • @WolfeyGamedev
    @WolfeyGamedev ปีที่แล้ว

    Well done. This is exactly what I needed!

  • @pygeekrfoo820
    @pygeekrfoo820 ปีที่แล้ว

    This is such impressive teaching. Good job.

  • @relaxsightme
    @relaxsightme 2 ปีที่แล้ว

    bro, your video is so good. I have know the concept of rust modules. Thanks very much.

  • @mjk6035
    @mjk6035 ปีที่แล้ว

    Great video that helps a lot in understanding the concept of modules in Rust

  • @therealmattplayer
    @therealmattplayer 2 ปีที่แล้ว

    Perfectly explained, cheers.

  • @andrefilipefonsecaborba4989
    @andrefilipefonsecaborba4989 2 ปีที่แล้ว

    What's up rusty! everything fine? Came here to complete one more monster video about Rust! Thank you for sharing your knownledges with us.
    RUST ❤

  • @gabonesmith4750
    @gabonesmith4750 ปีที่แล้ว

    clear and concise explanation

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

    man! your content is even better than the rust docs for sure!
    you got yourself a new subscriber :D

  • @Ryggis
    @Ryggis 2 ปีที่แล้ว

    This concept is really easy to understand on small projects, but I would still love to see a bigger project example

  • @emmanuelelegbede2812
    @emmanuelelegbede2812 2 ปีที่แล้ว

    Amazing. this was really helpful and concise

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

    Great tutorials. Can you list down or make a video on which extensions do you use in VSCode for Rust. Many thanks in advance

  • @fallout__boy1130
    @fallout__boy1130 ปีที่แล้ว

    Thank you so much for this great content, this is very valuable for me!

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

    In my project, when I added more folder branches within 'src', the local code worked normally (build, fmt, test). But when I executed the same in the CI/CD process, it was as if I couldn't find the imports in that format...

  • @ClearerThanMud
    @ClearerThanMud 2 ปีที่แล้ว

    Nice job. In IntelliJ I find it convenient to just create modules in line and then tell IntelliJ to turn them into separate files.

  • @LuisMarinAguilera
    @LuisMarinAguilera 2 ปีที่แล้ว

    This video is pure gold!

  • @raizul9978
    @raizul9978 2 ปีที่แล้ว

    Man I wished this video existed before I struggled to make sense of modules.

  • @tr3ysmith
    @tr3ysmith 2 ปีที่แล้ว +1

    It would be awesome if you did some videos on async/await

  • @bencekeomley-horvath385
    @bencekeomley-horvath385 ปีที่แล้ว +1

    Still it doesn't expain how can I add even more directory depth to it. I'm experienced C++, GO, Python developer, even after this video I have no idea how to structure my code

  • @freshlix9554
    @freshlix9554 ปีที่แล้ว

    Now that I think of it, is there a VSC extension/configuration for sorting and files in the tree regardless of their type? In order to group the modules with their sub-modules..

  • @dedenapraia
    @dedenapraia 2 ปีที่แล้ว +1

    Finally ! Bogdan thank you for this. Rust Yedi !

    • @arimcbrown
      @arimcbrown 2 ปีที่แล้ว

      omg, I couldn't put my finger on it... You're right. He's the chosen one. ;)

  • @connorzittrauer3306
    @connorzittrauer3306 ปีที่แล้ว

    thank you, very well explained!

  • @yapayzeka
    @yapayzeka 2 ปีที่แล้ว

    best rust channel out there

  • @TheBest-sd2qf
    @TheBest-sd2qf 2 ปีที่แล้ว

    Something I often wonder about, does it speed up compile time if you split up your project in multiple modules?

  • @spongechameleon6940
    @spongechameleon6940 2 ปีที่แล้ว

    So the only things crate consumers can use from a crate are items in the crate module marked pub? The items marked pub in sub-modules are only pub for the crate module, and need to be explicitly "re-pub'd" from the crate module to also be made available to the crate consumer?

  • @jonathanmoore5619
    @jonathanmoore5619 2 ปีที่แล้ว

    I'm a bit confused with re export. In a nutshell does it mean making nested modules functions, structs etc... within your project src public for use at the top level, so anyone can use the function? Like a public interface?

  • @GolangDojo
    @GolangDojo 2 ปีที่แล้ว

    Rust Modules sounds like an afterthought from Go Modules

    • @letsgetrusty
      @letsgetrusty  2 ปีที่แล้ว +2

      Get your 8k sub count butt out of here

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

    great explanation, thanks a lot!

  • @ryandsouza2962
    @ryandsouza2962 ปีที่แล้ว

    Would one recommend this same structure used for libraries in applications as well?

  • @liunox6023
    @liunox6023 2 ปีที่แล้ว

    thanks man, this is really great video.

  • @alfredomenezes8814
    @alfredomenezes8814 2 ปีที่แล้ว

    Amazing, thank you very much!

  • @fatemeetsluck
    @fatemeetsluck 2 ปีที่แล้ว

    This was much easier to understand than the official book.

    • @KoboldAdvocate
      @KoboldAdvocate ปีที่แล้ว

      Seeing someone do it while talking through it is a big help.

  • @bobschaaf2549
    @bobschaaf2549 2 ปีที่แล้ว

    What's missing is a way of splitting a module's source over multiple files while still maintaining a flat namespace.

  • @yinkao_
    @yinkao_ ปีที่แล้ว

    Thank you so much for this!

  • @PhosphorusMoscu-code
    @PhosphorusMoscu-code 2 ปีที่แล้ว

    You explications are very good! Thanks for aclarate this topic.

  • @danielstonebuilt1265
    @danielstonebuilt1265 ปีที่แล้ว

    Explained like you were Grandma: thank you granda 😁

  • @rpxdytx
    @rpxdytx 2 ปีที่แล้ว

    I just love how `cargo install cargo-modules` says "Downloading 4 crates" and then it says "Building [] 1/226 crate"

  • @M-Daeva
    @M-Daeva 2 ปีที่แล้ว

    2:31 How to setup VSCode to move automatically text cursor with indentation after pressing enter inside curve brackets? Is it rust-analyzer settings option?

  • @bjugdbjk
    @bjugdbjk 2 ปีที่แล้ว

    Could u make a video sharing abt professional exp and y u r moving to RUST !!

  • @goshen8783
    @goshen8783 15 วันที่ผ่านมา

    Thank you for this

  • @recklessroges
    @recklessroges 2 ปีที่แล้ว

    Really well explained. (Even I understood it.)

  • @erlangparasu6339
    @erlangparasu6339 2 ปีที่แล้ว

    Great tutorial 👍 Thank you so much 🙏

  • @proudmoroccan8164
    @proudmoroccan8164 2 ปีที่แล้ว

    Great stuff, thank you sharing.

  • @winter_light
    @winter_light 2 ปีที่แล้ว

    I did not understand the last part about exporting credentials. Rest of the section were 🔥

  • @x1expert1x
    @x1expert1x ปีที่แล้ว

    the "if let Status::Connected" line prevents me from compiling your code, "error[E0658]: `let...else` statements are unstable"

  • @nandanvasudevan
    @nandanvasudevan 2 ปีที่แล้ว

    The ‘use’ keyword seems to work just like ‘using namespace’ in C++ where it is considered bad code everywhere but for slideware…

    • @dulanchampa
      @dulanchampa 2 ปีที่แล้ว +6

      using namespace isn't whats considered bad practice. "using namespace std" aka bringing everything from standard library into global scope is what's bad practice

  • @Pjiwm
    @Pjiwm 2 ปีที่แล้ว

    Okay but let's say we have another sub directory next to auth_utils, and we want to make use of auth_utils from inside that directory. In Iib.rs we could just use mod auth_utils to make use of its sub modules and functions. How would this work inside a file in a neighboring subdirectory?