From 6ed86d0ee92b19a75b2828aee534db1667201a35 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Tue, 17 Jan 2023 12:17:16 -0500 Subject: [PATCH] impl `Debug` on `MetaContext` --- meta/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/src/lib.rs b/meta/src/lib.rs index b5ff2fb03..b546bb6f3 100644 --- a/meta/src/lib.rs +++ b/meta/src/lib.rs @@ -64,14 +64,14 @@ pub use title::*; /// /// This should generally by provided somewhere in the root of your application using /// [provide_meta_context]. -#[derive(Clone, Default)] +#[derive(Clone, Default, Debug)] pub struct MetaContext { pub(crate) title: TitleContext, pub(crate) tags: MetaTagsContext, } /// Manages all of the element created by components. -#[derive(Clone, Default)] +#[derive(Clone, Default, Debug)] pub(crate) struct MetaTagsContext { next_id: Rc>, #[allow(clippy::type_complexity)]