Structs in Rust

Поделиться
HTML-код
  • Опубликовано: 7 июн 2024
  • The ultimate Rust lang tutorial. Follow along as we go through the Rust lang book chapter by chapter.
    📝 Get notified when the Rust Cheatsheet comes out: letsgetrusty.com/cheatsheet
    The Rust book: doc.rust-lang.org/stable/book/​
    0:00 Intro
    0:36 Defining/Using Structs
    3:39 Function Constructors
    5:13 Reusing Instance Data
    6:00 Tuple Structs
    7:10 Example Use Case
    11:43 Method Syntax
    15:11 Associated Functions
    16:47 Outro
    #letsgetrusty​ #rust​lang #tutorial
  • НаукаНаука

Комментарии • 119

  • @letsgetrusty
    @letsgetrusty  3 года назад +7

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

  • @advanceringnewholder
    @advanceringnewholder 2 года назад +108

    It is kinda helpful that rust tels you what's wrong and you don't have to search the error on stackoverflow

    • @masela01
      @masela01 Год назад +12

      It's EXTREMELY helpful and I absolutely love that in Rust

  • @zainjadoon759
    @zainjadoon759 3 года назад +18

    thank you you saved me from rage quitting.

  • @tiagomello
    @tiagomello 5 месяцев назад +6

    I just read the structs chapter from the book. You are giving a fantastic walkthrough of the topic. Much easier to follow.

  • @Christobanistan
    @Christobanistan 3 года назад +119

    Man, VS Code is freaking awesome for Rust.

    • @zohnannor
      @zohnannor 2 года назад +68

      say thank you to rust-analyzer developers!

    • @stdint.h
      @stdint.h 2 года назад +2

      no

    • @QmVuamFtaW4
      @QmVuamFtaW4 Год назад +16

      nvim with rust-analyzer :)

    • @QmVuamFtaW4
      @QmVuamFtaW4 Год назад +1

      @@NexushasTaken No.

    • @QmVuamFtaW4
      @QmVuamFtaW4 Год назад

      @@NexushasTaken No.

  • @nicejungle
    @nicejungle Год назад +13

    Thanks for these tutorial.
    I was very dubious by the lack of OOP in Rust but implementations in structs has definitely converted me.
    Let's get Rusty :D

    • @Turalcar
      @Turalcar Год назад

      It's more enums that do that

  • @ChristianAltamiranoAyala
    @ChristianAltamiranoAyala 2 года назад +18

    Such a wonderful course, congrats and thank you for the effort you put into this.

  • @user-ct1bq5xz4q
    @user-ct1bq5xz4q Год назад +5

    Thanks for your great content!
    Your background music is a bit noisy, if you can disable it while recording videos, that helps alot for focusing on learning!

  • @chairmakerPete
    @chairmakerPete 2 года назад +6

    Following the course - it's getting powerful already, and we're not very far in. Nice!

  • @verdell2x246
    @verdell2x246 Год назад +2

    These tutorials are amazing I never realized how good tuples were until now

  • @rafaboanova
    @rafaboanova Год назад +5

    This is fantastic, THANK YOU! I was looking for videos on Rust to get a feeling of it (learning casually whenever I have some minutes to spare, no coding yet) and the ones I found before yours were either too slow, too advanced or too light on code. But the way you do it is perfect for me. Explain, show example, repeat. Really awesome, thank you!

    • @skellderknowledge3621
      @skellderknowledge3621 6 месяцев назад

      he's following the book which is very good , sometimes my jelly brain is too bored to read

  • @sonicsplasher
    @sonicsplasher 4 месяца назад +1

    Weirdly reminded me of TheNewBoston's C++ videos. Nostalgic. Great Tutorial

  • @joaquimgregorio3380
    @joaquimgregorio3380 2 года назад +2

    You are just an awesome man. Thanks for this great content!

  • @homtom2
    @homtom2 4 месяца назад

    love these, thanks so much for making them

  • @rohanbhandari7796
    @rohanbhandari7796 2 года назад +1

    Awesome, I hope there is goodness coming in future videos as well. Keep up the good work.

  • @phil86_
    @phil86_ 2 года назад +1

    Great course, practical and useful

  • @2002budokan
    @2002budokan 2 года назад +1

    Very good and complete, thank you.

  • @knightlyadventure
    @knightlyadventure Год назад +1

    Thank you so much for your work.

  • @handsome_brunch
    @handsome_brunch 2 года назад +1

    Awesome course ! Thanks

  • @myhendry
    @myhendry 2 года назад

    amazing tutorials. awesome and fantastic. subscribed. thank you

  • @alfianandi1388
    @alfianandi1388 2 месяца назад

    Thanks, really helpful!

  • @LukePighetti
    @LukePighetti 2 года назад +4

    Love your tutorials. One "why can't" question.
    Why can't String types accept String literals? It seems like the compiler could easily determine if a String type was needed, and cut down on some boilerplate

    • @codyheiner3636
      @codyheiner3636 2 года назад +3

      I think it's because String literals have type String slice. And saying "it seems the compiler could easily..." is very easy to say in toy examples, but can you make a set of rules that are guaranteed to do the right thing in ALL cases no matter how complex the code is?
      You might ask, why are string literals slices rather than strings. Probably for better performance.

  • @jhjacobs81
    @jhjacobs81 2 года назад +10

    Very helpful :) i find these videos much easier to understand then the books

  • @asjn3e
    @asjn3e 2 года назад

    thank you for great videos

  • @a_maxed_out_handle_of_30_chars
    @a_maxed_out_handle_of_30_chars 7 месяцев назад

    this was very good, thank you :)

  • @samdavepollard
    @samdavepollard Месяц назад

    very nice; super useful supplement to The Book

  • @arsil_
    @arsil_ 2 года назад

    its' just really awesome!!

  • @msauditech
    @msauditech 2 года назад

    Great one!

  • @nhanguyen2023
    @nhanguyen2023 Год назад

    Thanks a lot ^_^ it's very helpful ^_^

  • @ShaffleOne
    @ShaffleOne Год назад

    Hey! Thanks for the lessons, searched a great playlist and I finally found it :)
    One question: Whats the point of using String, String::from(), when there is just a &str?)

  • @vbmade2000
    @vbmade2000 2 года назад

    Thanks for the video. Can you make a video on PhantomData?

  • @ksnyou
    @ksnyou 3 года назад +1

    cool.. see u in next vid

  • @lsatenstein
    @lsatenstein 2 года назад +2

    Definitely, thank you for your excellent podcasts.
    Is there a typedef type of definition for a struct? I come from the hostile C environment where I make use of typedefs for structs and fields within structs.
    Just learning and wanting to transition to Rust, and port my code over as a learning exercise.

    • @codyheiner3636
      @codyheiner3636 2 года назад +3

      Yes.
      type NewTypeName = OldTypeName;

  • @alexanderschonfeld320
    @alexanderschonfeld320 Год назад

    Hi Bogdan. Can you share which VSCode extension you use?

  • @dangelgeek
    @dangelgeek 26 дней назад

    Do you have the repository about this examples? thank you, great tutorials!

  • @raffimolero64
    @raffimolero64 2 года назад +1

    uppercase `Self` keyword would've been a nice addition too

  • @xibodohls9469
    @xibodohls9469 Год назад +1

    Please explain where instances of structs are created? On stack or on heap?

  • @Erfa
    @Erfa 3 года назад +11

    Great video! I'm curious what is happening at 2:50. Is the new "name" variable taking ownership of the username string, is it a reference or does it implicitly clone it?

    • @letsgetrusty
      @letsgetrusty  3 года назад +6

      Excellent question! In this case ownership is being moved. If you try to create another variable and assign username to it, you'll get an error.

    • @markusbergkvist4882
      @markusbergkvist4882 2 года назад +2

      @Erfa90 I had the same question. Turns out you get "partially moved value" if you are trying to use `user1.name`. Try `rustc --explain E0382` to learn more about it.

    • @NuLuumo
      @NuLuumo 2 года назад +1

      ​@@markusbergkvist4882 ​ @Let's Get Rusty
      This man deserves a hearted comment 💯​

    • @the-nasim
      @the-nasim 2 года назад +7

      In this case immutable reference is the solution.
      let name = &user1.username;

    • @yolowex6876
      @yolowex6876 Год назад

      @@letsgetrusty 5:52 - What happens to the ownership of the attributes of user2 if we create user3 just without defining email and username?
      i mean like:
      ```
      let user3 = User {
      ..user2
      };
      ```

  • @meka4996
    @meka4996 2 года назад

    Could you please point me in the right direction for this "fn initialize(ctx: Context) -> ProgramResult {...}" ... Initialize is a struct, does that mean ctx is a variable of type Context struct with Initialize struct inside?

  • @davidsimek1197
    @davidsimek1197 2 года назад

    So if I input &self, its like non-static method and if its empty, its static?

  • @1nan821
    @1nan821 Год назад

    老师讲的非常好,感谢!美中不足是我的英语不太好,翻译的字幕看起来吃力。The teacher spoke very well, thank you! The only drawback is that my English is not very good and the translated subtitles look difficult.

  • @huuhhhhhhh
    @huuhhhhhhh Год назад

    Seem like a bug in rust analyser to annotate the arugments to functions with the parameter names. If I type this out explicitly, I get a compiler error since rust doesn't allow naming arguments to functions (just parameters at definition).
    I'll look at opening an issue toward the extension but thought I'd point it out here too.

  • @SeleDreams
    @SeleDreams Год назад +1

    it would have been good to cover the storage of other structs in a struct, since this is where it gets pretty complex compared to other languages. once it's not one of the primary types

  • @RamirodeSouza
    @RamirodeSouza Год назад +1

    Do structs also follow the snake_case naming convention?
    Do they have to start with upper case?

    • @marc536
      @marc536 4 месяца назад +1

      they should be in camel case. if you try otherwise, the compile/rust analyser gives you this warning:
      Structure `Rectangle_Struct` should have CamelCase name, e.g. `RectangleStruct`
      type `Rectangle_Struct` should have an upper camel case name
      convert the identifier to upper camel case: `RectangleStruct`

  • @daniel-lb4bh
    @daniel-lb4bh Год назад

    perfect

  • @aniket0fficial
    @aniket0fficial 3 месяца назад

    Do I need to use all the attributes that we create in the structs ?

  • @rusty9060
    @rusty9060 2 года назад

    Is there a specific reason we used tuples for Struct fields at 6:20 or else could we also use arrays wouldn't which be a better fit for the job of storing same data types and also easy on memory as it would be stored in stack?

    • @codyheiner3636
      @codyheiner3636 2 года назад +1

      They should perform exactly the same, it's just a syntactic difference.

  • @dzaki4559
    @dzaki4559 2 года назад

    Good tutorials, i'm waiting videos about macro in rust 😃

  • @BigfootPrinting
    @BigfootPrinting 2 года назад +1

    I'm a little thrown off coming from C++ and Swift that String and &str (literals/references to literals) cannot be implicitly interchanged, and thus requires an explicit conversion from the literal to a String with ::from("") which is ALL OVER programs.

  • @yolowex6876
    @yolowex6876 Год назад

    Isn't there constructors that we can define for our struct
    like the way we define constructors in c++?
    Great tutorial, thank you.

  • @NikhilSharma-cw9lh
    @NikhilSharma-cw9lh 4 месяца назад

    Is there a git repo for this ?

  • @-karter-4556
    @-karter-4556 10 месяцев назад

    I rarely see people use tuples like class instances, is that how they are supposed to be used?

  • @Yupppi
    @Yupppi 6 месяцев назад

    So Rust doesn't have something like a class where you'd put the functionality inside the struct itself and remove some clutter in the file?

  • @vorrnth8734
    @vorrnth8734 2 года назад +1

    How are "is a" relationships modelled? Say I want square. A square is also a rectangle and computes the area basically in the same way. In c++ i could use inheritance for that but how do you express that in rust?
    And is there access control, something like "private", for structs in rust?

    • @AssemblyWizard
      @AssemblyWizard 2 года назад

      A square is not a rectangle in OOP:
      A function that uses a rectangle can change its width and be guaranteed that the height doesn't change, but a square breaks that, violating the Liskov substitution principle.

    • @HcmfWice
      @HcmfWice Год назад

      @@AssemblyWizard An immutable square is absolutely a(n immutable) rectangle. If you allow mutation, and have Square inherit from Rectangle, your model is wrong.

    • @diadetediotedio6918
      @diadetediotedio6918 Год назад

      You can express using composition, no?

  • @abacussssss
    @abacussssss 2 года назад +2

    1:26 almost a very unfortunate typo!

  • @GolangDojo
    @GolangDojo 3 года назад +1

    Is this in 24 fps?

  • @KozaKrisz
    @KozaKrisz 7 месяцев назад

    Hi!
    I know this video was made in 2021, but what about this solution with the can_hold function?
    fn can_hold(&self, other: &Rectangle) -> bool {
    self.area() > other.area()
    }

  • @Bookwala12
    @Bookwala12 8 месяцев назад

    All the functions in the impl are associated functions irrespective if they carry an instance as a parameter or not. They are not methods if they dont have self as the first parameter.

  • @arturo3511
    @arturo3511 2 года назад

    Why do you sometimes use :: and sometimes . ?

  • @AlwynSchoeman
    @AlwynSchoeman Год назад +1

    Awesome as usual. Just wishing it didn't have the crappy background music.

  • @Scotttclipz
    @Scotttclipz 3 месяца назад

    why does the sign change colors on every camera cut

  • @darshanv1748
    @darshanv1748 2 года назад +1

    You make amazing content but just pointing out an error that is you can't do something that you did at 3:20 instead can use mem::replace

  • @adriancruz2822
    @adriancruz2822 7 месяцев назад

    Let's Get Structy

  • @user-ji6ip7ou8d
    @user-ji6ip7ou8d 5 месяцев назад

    So basically, associative methods are static functions?

  • @MrAtomUniverse
    @MrAtomUniverse Год назад

    I think i died in this episode

  • @kouko6727
    @kouko6727 2 года назад

    Bro I'm loving rust right now but input gathering is killling me XD

  • @shasank6854
    @shasank6854 Год назад +1

    I guess some people are getting confused by the errors showing up around 9:42, it can be solved by adding the return keyword in front of the expression. And a semicolon at the end, ofcourse.

  • @sahilverma4077
    @sahilverma4077 3 года назад +2

    what do you think why rust doesn't have classes?

    • @letsgetrusty
      @letsgetrusty  3 года назад +11

      Rust has other tools such as structs and traits which allow you to accomplish similar goals while favoring composition over inheritance.

    • @Christobanistan
      @Christobanistan 3 года назад +8

      OOP requires polymorphism, which is not zero cost. It requires RTTI and every virtual call requires a lookup. It becomes quite costly over time.

    • @sahilverma4077
      @sahilverma4077 3 года назад +3

      @@Christobanistan yea that can be a valid reason, after reading more on structures in c I feel like the way they implemented it is really awesome, all I need is to bind data and the capability to call methods on it and there are access specifiers too

    • @sahilverma4077
      @sahilverma4077 3 года назад

      @@Christobanistan I hate Borrow checker though

    • @julians.2597
      @julians.2597 3 года назад +2

      @@sahilverma4077 then learn c++, very similar but without safe memory management, which is what the borrow checker accomplishes

  • @sffortytwo
    @sffortytwo 2 года назад +2

    Good course. But the background music is distracting to the point of maddening.

  • @sshovelyjoe
    @sshovelyjoe 9 месяцев назад +1

    Great tutorial but the background music is very distracting.

  • @bfrd9k
    @bfrd9k Год назад

    As someone who is learning rust I kinda hate this vscode module. When assigning user2 it is not obvious to people learning rust that email and username should not be typed out, if you do type it out as shown and test or build you will get an error because rust functions do not support named parameters, they are positional only.

  • @vimalk78
    @vimalk78 Год назад +1

    is it possible to remove the background soundtrack? it gets annoying after sometime

  • @AngriestEwok
    @AngriestEwok Год назад

    This one hurts my head.

  • @ali_randomNumberHere
    @ali_randomNumberHere Год назад

    "chapter 10"

  • @jbrown-acuity
    @jbrown-acuity 2 года назад +2

    Love your videos, but the background music on this one makes it impossible to concentrate.

  • @LiamDennehy
    @LiamDennehy Год назад

    It's so distracting seeing the flag on the wall facing the wrong way.