From 743d6d37743b1277b984a583b1443ac32f2b576e Mon Sep 17 00:00:00 2001 From: Douman Date: Sat, 5 Sep 2020 21:34:19 +0300 Subject: [PATCH] Add missing pub to FullReset's data format (#96) --- miniz_oxide/src/inflate/stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniz_oxide/src/inflate/stream.rs b/miniz_oxide/src/inflate/stream.rs index 88232183..148d1325 100644 --- a/miniz_oxide/src/inflate/stream.rs +++ b/miniz_oxide/src/inflate/stream.rs @@ -44,7 +44,7 @@ impl ResetPolicy for ZeroReset { /// Full reset of the state, including zeroing memory. /// /// Requires to provide new data format. -pub struct FullReset(DataFormat); +pub struct FullReset(pub DataFormat); impl ResetPolicy for FullReset { #[inline]