Trait golem_cloud_client::api::LimitsClient

source ·
pub trait LimitsClient {
    // Required methods
    fn get<'life0, 'life1, 'async_trait>(
        &'life0 self,
        account_id: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<ResourceLimits, Error<LimitsError>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
    fn post<'life0, 'life1, 'async_trait>(
        &'life0 self,
        value: &'life1 BatchUpdateResourceLimits
    ) -> Pin<Box<dyn Future<Output = Result<UpdateResourceLimitsResponse, Error<LimitsError>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

source

fn get<'life0, 'life1, 'async_trait>( &'life0 self, account_id: &'life1 str ) -> Pin<Box<dyn Future<Output = Result<ResourceLimits, Error<LimitsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source

fn post<'life0, 'life1, 'async_trait>( &'life0 self, value: &'life1 BatchUpdateResourceLimits ) -> Pin<Box<dyn Future<Output = Result<UpdateResourceLimitsResponse, Error<LimitsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§