File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ mod tests {
89
89
}
90
90
91
91
/// Represents all the ways that a request can fail
92
- #[ derive( Debug ) ]
92
+ #[ derive( Clone , Debug ) ]
93
93
pub enum IpApiError {
94
94
/// Incorrect IP address or non-existent domain
95
95
///
@@ -125,6 +125,7 @@ pub enum IpApiError {
125
125
}
126
126
127
127
/// Represents all available languages for [`IpData`]
128
+ #[ derive( Clone , Debug ) ]
128
129
pub enum IpApiLanguage {
129
130
/// Deutsch (German)
130
131
De ,
@@ -189,7 +190,7 @@ struct IpApiMessage {
189
190
/// query: Some("1.1.1.1".to_string()),
190
191
/// };
191
192
/// ```
192
- #[ derive( Deserialize ) ]
193
+ #[ derive( Clone , Debug , Deserialize ) ]
193
194
#[ serde( rename_all = "camelCase" ) ]
194
195
pub struct IpData {
195
196
/// Continent name
@@ -275,6 +276,7 @@ pub struct IpData {
275
276
276
277
/// Configuration structure allows you to customize the requested fields in the request
277
278
/// to save traffic
279
+ #[ derive( Clone , Debug ) ]
278
280
pub struct IpApiConfig {
279
281
numeric_field : u32 ,
280
282
is_continent_included : bool ,
You can’t perform that action at this time.
0 commit comments