#[derive(Clone, Debug, PartialEq)]
pub enum IpRevProperty<'hdr> {
Policy(IpRevPolicy<'hdr>),
Smtp(IpRevSmtp<'hdr>),
}
#[derive(Clone, Debug, PartialEq)]
pub enum IpRevPolicy<'hdr> {
IpRev(&'hdr str),
Unknown(&'hdr str, &'hdr str),
}
#[derive(Clone, Debug, PartialEq)]
pub enum IpRevSmtp<'hdr> {
Unknown(&'hdr str, &'hdr str),
}