Auto merge of #16738 - paulrouget:LoadDataDebug, r=Wafflespeanut

derive(Debug) for LoadData

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16738)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-05-05 12:05:22 -05:00 committed by GitHub
commit 4e73fceaf7

View file

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