pub trait FrameProcessor<F> {
// Required method
fn process<'life0, 'async_trait>(
&'life0 mut self,
frame_data: F,
) -> Pin<Box<dyn Future<Output = Option<F>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}