summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/request/dag.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/request/dag.rs')
-rw-r--r--ipfs-api/src/request/dag.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipfs-api/src/request/dag.rs b/ipfs-api/src/request/dag.rs
index 4b17b82..cc5cf08 100644
--- a/ipfs-api/src/request/dag.rs
+++ b/ipfs-api/src/request/dag.rs
@@ -9,7 +9,7 @@
use request::ApiRequest;
-#[derive(Serialize, Debug, Copy, Clone, PartialEq, Eq, Hash)]
+#[derive(Serialize)]
pub struct DagGet<'a> {
#[serde(rename = "arg")]
pub path: &'a str,
@@ -19,7 +19,7 @@ impl<'a> ApiRequest for DagGet<'a> {
const PATH: &'static str = "/dag/get";
}
-#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
+
pub struct DagPut;
impl_skip_serialize!(DagPut);