From da20691d2d2510cdba3130e80a7e001c33a387c3 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 6 Mar 2022 11:49:37 +0000 Subject: [PATCH] wdriver: Expose contents of WPiece These ought to have been pub. As it happens we only used them here in this module so we didn't notice - except that the JsV is just there in case and happens not to be used. --- wdriver/wdriver.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wdriver/wdriver.rs b/wdriver/wdriver.rs index 1b32cfba..ae5781d3 100644 --- a/wdriver/wdriver.rs +++ b/wdriver/wdriver.rs @@ -278,8 +278,8 @@ impl Debug for WindowGuard<'_> { #[derive(Deserialize,Clone,Debug)] pub struct WPiece { - piece: Vpid, - p: JsV, + pub piece: Vpid, + pub p: JsV, } pub trait LogIgnoreBefore { -- 2.30.2