9 lines
195 B
Rust
9 lines
195 B
Rust
|
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>,
|
||
|
}
|