Skip to content

Commit 5934d46

Browse files
committed
fix(lib): derive Clone and Debug
1 parent 36191d6 commit 5934d46

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/lib.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ mod tests {
8989
}
9090

9191
/// Represents all the ways that a request can fail
92-
#[derive(Debug)]
92+
#[derive(Clone, Debug)]
9393
pub enum IpApiError {
9494
/// Incorrect IP address or non-existent domain
9595
///
@@ -125,6 +125,7 @@ pub enum IpApiError {
125125
}
126126

127127
/// Represents all available languages for [`IpData`]
128+
#[derive(Clone, Debug)]
128129
pub enum IpApiLanguage {
129130
/// Deutsch (German)
130131
De,
@@ -189,7 +190,7 @@ struct IpApiMessage {
189190
/// query: Some("1.1.1.1".to_string()),
190191
/// };
191192
/// ```
192-
#[derive(Deserialize)]
193+
#[derive(Clone, Debug, Deserialize)]
193194
#[serde(rename_all = "camelCase")]
194195
pub struct IpData {
195196
/// Continent name
@@ -275,6 +276,7 @@ pub struct IpData {
275276

276277
/// Configuration structure allows you to customize the requested fields in the request
277278
/// to save traffic
279+
#[derive(Clone, Debug)]
278280
pub struct IpApiConfig {
279281
numeric_field: u32,
280282
is_continent_included: bool,

0 commit comments

Comments
 (0)