aboutsummaryrefslogtreecommitdiff
path: root/src/response/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/response/mod.rs')
-rw-r--r--src/response/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/response/mod.rs b/src/response/mod.rs
index 8d95dfb..4407c10 100644
--- a/src/response/mod.rs
+++ b/src/response/mod.rs
@@ -3,6 +3,7 @@ use std::collections::BTreeMap;
/// A Response to an API call including status and data.
/// Data is guaranteed to be a `Struct`.
/// [`Struct`]: xmlrpc::Value::Struct
+#[derive(Clone, Debug)]
pub struct Response {
pub status: i32,
pub data: BTreeMap<String, xmlrpc::Value>,