Skip to content

Instantly share code, notes, and snippets.

@alecchendev
Created December 24, 2020 01:05
Show Gist options
  • Save alecchendev/f2b141fb71520ed455e093f98379ce4d to your computer and use it in GitHub Desktop.
Save alecchendev/f2b141fb71520ed455e093f98379ce4d to your computer and use it in GitHub Desktop.
OOP in rust article - impl animal enum
impl Animal {
fn speak(&self) {
match self {
Animal::Dog(_) => println!("Woof!"),
Animal::Cat(_) => println!("Meow!"),
Animal::Pig(_) => println!("Oink!"),
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment