chore: missing Debug implementations

This commit is contained in:
Greg Johnston 2024-06-25 20:39:49 -04:00
parent be92dc56aa
commit c1877354f0
2 changed files with 2 additions and 1 deletions

View File

@ -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,

View File

@ -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<AnySource>);
impl SourceSet {