From b5e57279362d5ee0272a47d6833f9dd707a3be14 Mon Sep 17 00:00:00 2001 From: timofey Date: Sun, 15 Oct 2023 14:46:49 +0000 Subject: [PATCH] derives for WithEffect --- src/func/instances/effect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func/instances/effect.rs b/src/func/instances/effect.rs index 72a7dc5..9610f90 100644 --- a/src/func/instances/effect.rs +++ b/src/func/instances/effect.rs @@ -22,7 +22,7 @@ pub trait Effect: Send { } /// Value and related metadata. -#[derive(Clone)] +#[derive(Debug, Clone, PartialEq, Eq)] pub struct WithEffect { pub value: A, pub effect: E,