1 2 3 4 5 6 7 8 9
#[derive(Deserialize, Serialize)] pub struct Address { line1: String, line2: String, city: String, state: String, postal_code: String, country: String, }
1 2 3 4 5 6 7 8 9
#[derive(Deserialize, Serialize)] pub struct Address { line1: String, line2: String, city: String, state: String, postal_code: String, country: String, }