Skip to content

Instantly share code, notes, and snippets.

@ilantoren
Created November 16, 2021 08:00
Show Gist options
  • Save ilantoren/50372c47564c12f3499f21be532efd40 to your computer and use it in GitHub Desktop.
Save ilantoren/50372c47564c12f3499f21be532efd40 to your computer and use it in GitHub Desktop.
Defining struct for serde
#[derive(Serialize,Deserialize, Debug)]
pub struct Restaurant {
cuisine: String,
borough: String,
name: String,
address: Address
}
#[derive(Serialize, Deserialize, Debug)]
pub struct Address {
building: String,
street: String,
zipcode: String,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment