1 2 3 4 5 6 7 8
use serde::Deserialize; #[derive(Deserialize)] pub struct IpApiResponse { pub status: String, #[serde(rename = "countryCode")] pub country_code: Option<String>, }