Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/derekbanas/Rust-Tutorial
/ types & classes
Types & classes
8 in github.com/derekbanas/Rust-Tutorial
⨍
Functions
24
◇
Types & classes
8
Class
Bank
Bank struct just contains current balance
main.rs:1020
Class
Circle
main.rs:696
Class
Customer
----- STRUCTS ----- A struct is a custom data type that stores multiple types of data
main.rs:655
Enum
Day
Create an Enum for days of week
main.rs:464
Class
Pizza
To access the struct and the part to make public must both use pub
mod.rs:12
Class
Rectangle
Define rectangle and circle struct
main.rs:695
Interface
Shape
We can tie struct properties to functions using Traits You can create functions that can be used by any structs that implement the right traits
main.rs:686
Class
TreeNode
main.rs:923