Condition

Trait Condition 

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

Required Methods§

Source

fn evaluate( &self, input: Self::Input, ) -> ConditionFuture<'_, Self::Output, Self::Error>

Implementors§