diff options
Diffstat (limited to 'src/response/mod.rs')
-rw-r--r-- | src/response/mod.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/response/mod.rs b/src/response/mod.rs index 5aab5a5..aa5854f 100644 --- a/src/response/mod.rs +++ b/src/response/mod.rs @@ -1,12 +1 @@ -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(crate) data: BTreeMap<String, xmlrpc::Value>, -} - pub mod nameserver; |