pub trait GetIMDNInfo<'a> {
// Required methods
fn get_imdn_info_from_inflated_headers(
&'a self,
headers: Vec<(Vec<u8>, &'a [u8])>,
) -> Result<IMDNInfo<'_>, &'static str>;
fn get_imdn_info(&self) -> Result<IMDNInfo<'_>, &'static str>;
}