pgp 0.2.2

OpenPGP implementation in Rust
Documentation
1
2
3
4
5
6
7
pub type Headers = Vec<(String, String)>;

#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Email<'a> {
    pub header: Headers,
    pub body: &'a str,
}