pub trait IComponentProcess<TConfig, TMsg> {
// Required method
fn process<'life0, 'async_trait>(
&'life0 self,
config: TConfig,
input: CmpInput<TMsg>,
output: CmpOutput<TMsg>,
cache: Cache<TMsg>
) -> Pin<Box<dyn Future<Output = Result<(), ComponentError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}