Make response fields crate visible

This commit is contained in:
Filip Tibell 2025-04-26 22:37:07 +02:00
parent 48e34b8c98
commit 1e4b020d84

View file

@ -14,8 +14,8 @@ use crate::shared::headers::header_map_to_table;
pub struct Response {
// NOTE: We use Bytes instead of Full<Bytes> to avoid
// needing async when getting a reference to the body
inner: HyperResponse<Bytes>,
decompressed: bool,
pub(crate) inner: HyperResponse<Bytes>,
pub(crate) decompressed: bool,
}
impl Response {