pub trait Waiters {
    // Required methods
    fn wait_until_services_inactive(&self) -> ServicesInactiveFluentBuilder;
    fn wait_until_services_stable(&self) -> ServicesStableFluentBuilder;
    fn wait_until_tasks_running(&self) -> TasksRunningFluentBuilder;
    fn wait_until_tasks_stopped(&self) -> TasksStoppedFluentBuilder;
}Expand description
Waiter functions for the client.
Import this trait to get wait_until methods on the client.
Required Methods§
sourcefn wait_until_services_inactive(&self) -> ServicesInactiveFluentBuilder
 
fn wait_until_services_inactive(&self) -> ServicesInactiveFluentBuilder
Wait for services_inactive
sourcefn wait_until_services_stable(&self) -> ServicesStableFluentBuilder
 
fn wait_until_services_stable(&self) -> ServicesStableFluentBuilder
Wait for services_stable
sourcefn wait_until_tasks_running(&self) -> TasksRunningFluentBuilder
 
fn wait_until_tasks_running(&self) -> TasksRunningFluentBuilder
Wait for tasks_running
sourcefn wait_until_tasks_stopped(&self) -> TasksStoppedFluentBuilder
 
fn wait_until_tasks_stopped(&self) -> TasksStoppedFluentBuilder
Wait for tasks_stopped