From 6a4df96fa567f93b4dc4c84fabd4b9c43feba55d Mon Sep 17 00:00:00 2001 From: Graeme Coupar Date: Mon, 8 Jan 2024 20:55:38 +0000 Subject: [PATCH] Derive `Clone` on `GraphQlResponse` --- cynic/src/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cynic/src/result.rs b/cynic/src/result.rs index 0d99f70d3..ff74a962d 100644 --- a/cynic/src/result.rs +++ b/cynic/src/result.rs @@ -1,5 +1,5 @@ /// The response to a GraphQl operation -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct GraphQlResponse { /// The operation data (if the operation was successful) pub data: Option,