Trait csaf_walker::fetcher::DataProcessor
source · pub trait DataProcessor {
type Type: Sized;
// Required method
fn process<'life0, 'async_trait>(
&'life0 self,
response: Response
) -> Pin<Box<dyn Future<Output = Result<Self::Type, Error>> + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}