summaryrefslogtreecommitdiffstats
path: root/src/types
diff options
context:
space:
mode:
Diffstat (limited to 'src/types')
-rw-r--r--src/types/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types/util.rs b/src/types/util.rs
index a31bed6..0f95e8c 100644
--- a/src/types/util.rs
+++ b/src/types/util.rs
@@ -18,7 +18,7 @@ impl From<usize> for Version {
/// A Timestamp which can be parsed into a NaiveDateTime object
/// Format: 2014-11-28T21:45:59.324310806+09:00
/// (RFC3999)
-#[derive(Serialize, Deserialize, Debug)]
+#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Timestamp(NaiveDateTime);
impl From<NaiveDateTime> for Timestamp {