Waiters

Trait Waiters 

Source
pub trait Waiters {
    // Required methods
    fn wait_until_flow_active(&self) -> FlowActiveFluentBuilder;
    fn wait_until_flow_deleted(&self) -> FlowDeletedFluentBuilder;
    fn wait_until_flow_standby(&self) -> FlowStandbyFluentBuilder;
    fn wait_until_input_standby(&self) -> InputStandbyFluentBuilder;
    fn wait_until_input_deleted(&self) -> InputDeletedFluentBuilder;
    fn wait_until_input_active(&self) -> InputActiveFluentBuilder;
    fn wait_until_output_deleted(&self) -> OutputDeletedFluentBuilder;
    fn wait_until_output_active(&self) -> OutputActiveFluentBuilder;
    fn wait_until_output_standby(&self) -> OutputStandbyFluentBuilder;
    fn wait_until_output_routed(&self) -> OutputRoutedFluentBuilder;
}
Expand description

Waiter functions for the client.

Import this trait to get wait_until methods on the client.

Required Methods§

Source

fn wait_until_flow_active(&self) -> FlowActiveFluentBuilder

Wait until a flow is active

Source

fn wait_until_flow_deleted(&self) -> FlowDeletedFluentBuilder

Wait until a flow is deleted

Source

fn wait_until_flow_standby(&self) -> FlowStandbyFluentBuilder

Wait until a flow is in standby mode

Source

fn wait_until_input_standby(&self) -> InputStandbyFluentBuilder

Wait until the Input is STANDBY

Source

fn wait_until_input_deleted(&self) -> InputDeletedFluentBuilder

Wait until the Input is deleted

Source

fn wait_until_input_active(&self) -> InputActiveFluentBuilder

Wait until the Input is ACTIVE

Source

fn wait_until_output_deleted(&self) -> OutputDeletedFluentBuilder

Wait until the Output is deleted

Source

fn wait_until_output_active(&self) -> OutputActiveFluentBuilder

Wait until the Output is ACTIVE

Source

fn wait_until_output_standby(&self) -> OutputStandbyFluentBuilder

Wait until the Output is STANDBY

Source

fn wait_until_output_routed(&self) -> OutputRoutedFluentBuilder

Wait until the Output is ROUTED

Implementors§