Skip to content

Instantly share code, notes, and snippets.

@alecchendev
Created December 24, 2020 01:04
Show Gist options
  • Save alecchendev/3748aa5069a15cd0fc55777df105a590 to your computer and use it in GitHub Desktop.
Save alecchendev/3748aa5069a15cd0fc55777df105a590 to your computer and use it in GitHub Desktop.
OOP in rust article - animal enum 2
enum Animal {
Dog,
Cat = 0,
Pig { cooked: bool },
Cow(String),
Goat(Goat),
}
struct Goat {
age: u32,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment