Skip to content

Commit

Permalink
Derive Clone on GraphQlResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed Jan 8, 2024
1 parent 81ea912 commit 6a4df96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cynic/src/result.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// The response to a GraphQl operation
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct GraphQlResponse<T, ErrorExtensions = serde::de::IgnoredAny> {
/// The operation data (if the operation was successful)
pub data: Option<T>,
Expand Down

0 comments on commit 6a4df96

Please sign in to comment.