From 19e7418e6254cc67c91b40d30d67674a8a962810 Mon Sep 17 00:00:00 2001 From: Paul Rouget Date: Fri, 5 May 2017 14:27:23 +0200 Subject: [PATCH] derive(debug) for LoadData --- components/script_traits/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index ed0e09468ac..954c1386fa2 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -130,7 +130,7 @@ pub enum LayoutControlMsg { /// can be passed to `LoadUrl` to load a page with GET/POST /// parameters or headers -#[derive(Clone, Deserialize, Serialize)] +#[derive(Clone, Debug, Deserialize, Serialize)] pub struct LoadData { /// The URL. pub url: ServoUrl,