pub trait Condition: FlowComponent {
// Required method
fn evaluate(
&self,
input: Self::Input,
) -> ConditionFuture<'_, Self::Output, Self::Error>;
}pub trait Condition: FlowComponent {
// Required method
fn evaluate(
&self,
input: Self::Input,
) -> ConditionFuture<'_, Self::Output, Self::Error>;
}