You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fnmain(){let b1 = Book{id:1001,name:"rust in action",};
b1.print();}structBook{id:u32,name:&'staticstr,}traitPrintable{fnprint(&self);}implPrintableforBook{fnprint(&self){println!("Printing Book with id:{} and name:{}",self.id,self.name);}}
(Playground)
Output:
Errors:
The text was updated successfully, but these errors were encountered: