summaryrefslogtreecommitdiffstats
path: root/parser/src/header.rs
diff options
context:
space:
mode:
Diffstat (limited to 'parser/src/header.rs')
-rw-r--r--parser/src/header.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/parser/src/header.rs b/parser/src/header.rs
index 26e81b1..2473a2e 100644
--- a/parser/src/header.rs
+++ b/parser/src/header.rs
@@ -11,8 +11,8 @@ use crate::error::*;
/// the data as Rust strings.
#[derive(Debug)]
pub struct MailHeader<'a> {
- key: &'a [u8],
- value: &'a [u8],
+ pub(crate) key: &'a [u8],
+ pub(crate) value: &'a [u8],
}
impl<'a> MailHeader<'a> {