pub trait Waiters {
// Required methods
fn wait_until_asset_active(&self) -> AssetActiveFluentBuilder;
fn wait_until_asset_not_exists(&self) -> AssetNotExistsFluentBuilder;
fn wait_until_asset_model_active(&self) -> AssetModelActiveFluentBuilder;
fn wait_until_asset_model_not_exists(
&self,
) -> AssetModelNotExistsFluentBuilder;
fn wait_until_portal_active(&self) -> PortalActiveFluentBuilder;
fn wait_until_portal_not_exists(&self) -> PortalNotExistsFluentBuilder;
}Expand description
Waiter functions for the client.
Import this trait to get wait_until methods on the client.
Required Methods§
Sourcefn wait_until_asset_active(&self) -> AssetActiveFluentBuilder
fn wait_until_asset_active(&self) -> AssetActiveFluentBuilder
Wait for asset_active
Sourcefn wait_until_asset_not_exists(&self) -> AssetNotExistsFluentBuilder
fn wait_until_asset_not_exists(&self) -> AssetNotExistsFluentBuilder
Wait for asset_not_exists
Sourcefn wait_until_asset_model_active(&self) -> AssetModelActiveFluentBuilder
fn wait_until_asset_model_active(&self) -> AssetModelActiveFluentBuilder
Wait for asset_model_active
Sourcefn wait_until_asset_model_not_exists(&self) -> AssetModelNotExistsFluentBuilder
fn wait_until_asset_model_not_exists(&self) -> AssetModelNotExistsFluentBuilder
Wait for asset_model_not_exists
Sourcefn wait_until_portal_active(&self) -> PortalActiveFluentBuilder
fn wait_until_portal_active(&self) -> PortalActiveFluentBuilder
Wait for portal_active
Sourcefn wait_until_portal_not_exists(&self) -> PortalNotExistsFluentBuilder
fn wait_until_portal_not_exists(&self) -> PortalNotExistsFluentBuilder
Wait for portal_not_exists