pub trait IComponentFunction<TMessage, TConfig>: Send {
// Required method
fn call(
&self,
input: ComponentInput<TMessage>,
output: ComponentOutput<TMessage>,
config: TConfig,
cache: CacheType<TMessage>
) -> BoxFuture<'static, ()>;
}
Expand description
Трейт для функции компонента