From c1877354f07f052dbdbf303e167a6327a598d7c3 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Tue, 25 Jun 2024 20:39:49 -0400 Subject: [PATCH] chore: missing Debug implementations --- reactive_graph/src/effect/inner.rs | 1 + reactive_graph/src/graph/sets.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/reactive_graph/src/effect/inner.rs b/reactive_graph/src/effect/inner.rs index 3b00af796..5c818f2a2 100644 --- a/reactive_graph/src/effect/inner.rs +++ b/reactive_graph/src/effect/inner.rs @@ -8,6 +8,7 @@ use crate::{ use or_poisoned::OrPoisoned; use std::sync::{Arc, RwLock, Weak}; +#[derive(Debug)] pub(crate) struct EffectInner { pub dirty: bool, pub observer: Sender, diff --git a/reactive_graph/src/graph/sets.rs b/reactive_graph/src/graph/sets.rs index 76f3adb6b..412f5ef79 100644 --- a/reactive_graph/src/graph/sets.rs +++ b/reactive_graph/src/graph/sets.rs @@ -9,7 +9,7 @@ use super::{AnySource, AnySubscriber, Source}; use core::slice; use std::{mem, vec::IntoIter}; -#[derive(Default, Clone)] +#[derive(Default, Clone, Debug)] pub struct SourceSet(Vec); impl SourceSet {