ipwhois_rs 0.1.0

Rust wrapper for the ipwhois.io geolocation API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Default, Clone)]
pub struct Flag {
    #[serde(default)]
    pub img: String,
    #[serde(default)]
    pub emoji: String,
    #[serde(default)]
    pub emoji_unicode: String,
}