From 16112e90aac6cc6d9bb6b48df0bccef5f4b13d6d Mon Sep 17 00:00:00 2001
From: Maaz Ahmed <maaz.a@subcom.tech>
Date: Fri, 5 Jan 2024 10:57:50 +0530
Subject: [PATCH] qol: impl Copy on QryFunc and Clone on AggrFunc

---
 src/query/fns/aggregate.rs | 1 +
 src/query/fns/mod.rs       | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/query/fns/aggregate.rs b/src/query/fns/aggregate.rs
index 810bee3..0f0410a 100644
--- a/src/query/fns/aggregate.rs
+++ b/src/query/fns/aggregate.rs
@@ -16,6 +16,7 @@ use std::fmt::Display;
 /// Type that represents an aggregate function, also known as the aggregation operator in PromQL
 ///
 /// Unlike other functions, this provides a modifier [`by`](Self::by) and [`without`](Self::without). Only one can be used at once.
+#[derive(Debug, Clone)]
 pub struct AggrFunc<'a, F: Fn(&mut fmt::Formatter) -> fmt::Result> {
     inner: QryFunc<F>,
     mod_type: Mod<'a, AggrType>,
diff --git a/src/query/fns/mod.rs b/src/query/fns/mod.rs
index d2760d1..540b767 100644
--- a/src/query/fns/mod.rs
+++ b/src/query/fns/mod.rs
@@ -44,7 +44,7 @@ pub(crate) use qry_fn;
 /// Type that represents a query function. Meant to be constructed through the query functions provided in the [`fns`](crate::query::fns) module.
 ///
 /// This internally holds an actual function (closure), that acts as a type that implements the `Display` trait.
-#[derive(Debug, Clone)]
+#[derive(Debug, Clone, Copy)]
 pub struct QryFunc<F: Fn(&mut fmt::Formatter) -> fmt::Result> {
     name: &'static str,
     args: F,
-- 
GitLab