eml-codec/src/model.rs

9 lines
195 B
Rust
Raw Normal View History

2023-06-08 19:43:32 +00:00
use std::collections::HashMap;
#[derive(Debug, Default)]
pub struct HeaderSection<'a> {
pub subject: Option<String>,
pub from: Vec<String>,
pub optional: HashMap<&'a str, String>,
}