msg-auth-status 0.2.0

Parser & Verifier for Message Authentication Status - DKIM-Signature and Authentication-Results
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Address Specification

/// Addr-spec RFC 2822
#[derive(Clone, Debug, PartialEq)]
pub struct AddrSpec<'hdr> {
    /// Display name
    pub display_name: Option<&'hdr str>,
    /// Local part
    pub local_part: &'hdr str,
    /// Domain
    pub domain: &'hdr str,
    /// Raw
    pub raw: &'hdr str,
}