From 1e4b020d84d112a70d7d6958ddc2e51248f4cd92 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sat, 26 Apr 2025 22:37:07 +0200 Subject: [PATCH] Make response fields crate visible --- crates/lune-std-net/src/shared/response.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/lune-std-net/src/shared/response.rs b/crates/lune-std-net/src/shared/response.rs index 5efc8c8..d1256ac 100644 --- a/crates/lune-std-net/src/shared/response.rs +++ b/crates/lune-std-net/src/shared/response.rs @@ -14,8 +14,8 @@ use crate::shared::headers::header_map_to_table; pub struct Response { // NOTE: We use Bytes instead of Full to avoid // needing async when getting a reference to the body - inner: HyperResponse, - decompressed: bool, + pub(crate) inner: HyperResponse, + pub(crate) decompressed: bool, } impl Response {