Skip to content

Instantly share code, notes, and snippets.

@sean3z
Last active March 17, 2018 16:10
Show Gist options
  • Save sean3z/282f09f95a2482d9e2f8d694a9c722de to your computer and use it in GitHub Desktop.
Save sean3z/282f09f95a2482d9e2f8d694a9c722de to your computer and use it in GitHub Desktop.
A first stab at our Hero model
#[derive(Serialize, Deserialize)]
pub struct Hero {
pub id: Option<i32>,
pub name: String,
pub identity: String,
pub hometown: String,
pub age: i32
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment