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>;
}

Required Methods§

source

fn get_imdn_info_from_inflated_headers( &'a self, headers: Vec<(Vec<u8>, &'a [u8])> ) -> Result<IMDNInfo<'_>, &'static str>

source

fn get_imdn_info(&self) -> Result<IMDNInfo<'_>, &'static str>

Implementors§