diff --git a/src/header.rs b/src/header.rs index ce3b87e8..42ccda37 100644 --- a/src/header.rs +++ b/src/header.rs @@ -65,7 +65,7 @@ impl fmt::Display for HeaderLine { #[derive(Clone, PartialEq, Eq)] /// Wrapper type for a header field. /// -pub struct Header { +pub(crate) struct Header { // Line contains the unmodified bytes of single header field. // It does not contain the final CRLF. line: HeaderLine, @@ -115,6 +115,7 @@ impl Header { /// /// ureq can't know what encoding the header is in, but this function provides /// an escape hatch for users that need to handle such headers. + #[cfg(feature = "http-interop")] pub fn value_raw(&self) -> &[u8] { let mut bytes = &self.line.as_bytes()[self.index + 1..]; diff --git a/src/lib.rs b/src/lib.rs index 8639c653..56402f7a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -424,7 +424,6 @@ pub use crate::agent::Agent; pub use crate::agent::AgentBuilder; pub use crate::agent::RedirectAuthHeaders; pub use crate::error::{Error, ErrorKind, OrAnyStatus, Transport}; -pub use crate::header::Header; pub use crate::middleware::{Middleware, MiddlewareNext}; pub use crate::proxy::Proxy; pub use crate::request::{Request, RequestUrl};