How to use method in struct with Rust

1 Answer

0 votes
struct Rectangle {
   width:u32, height:u32
}

impl Rectangle {
    fn area(&self)->u32 {
        self.width * self.height
    }
}

fn main() {
   let r = Rectangle {
      width:27,
      height:13
   };
   
   println!("width:{} - height:{} - area:{}", r.width, r.height, r.area());
}




/*
run:

width:27 - height:13 - area:351

*/

 



answered Oct 25, 2022 by avibootz

Related questions

1 answer 161 views
3 answers 202 views
2 answers 139 views
139 views asked May 3, 2023 by avibootz
1 answer 180 views
180 views asked Oct 25, 2022 by avibootz
1 answer 119 views
119 views asked Oct 25, 2022 by avibootz
1 answer 126 views
2 answers 220 views
...