Struct golem_cloud_client::api::ApiDomainClientLive
source · pub struct ApiDomainClientLive {
pub context: Context,
}
Fields§
§context: Context
Trait Implementations§
source§impl ApiDomainClient for ApiDomainClientLive
impl ApiDomainClient for ApiDomainClientLive
fn get_domains<'life0, 'life1, 'async_trait>(
&'life0 self,
project_id: &'life1 Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<ApiDomain>, Error<ApiDomainError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn create_or_update_domain<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 DomainRequest,
) -> Pin<Box<dyn Future<Output = Result<ApiDomain, Error<ApiDomainError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn delete_domain<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
project_id: &'life1 Uuid,
domain: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<String, Error<ApiDomainError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
Auto Trait Implementations§
impl Freeze for ApiDomainClientLive
impl !RefUnwindSafe for ApiDomainClientLive
impl Send for ApiDomainClientLive
impl Sync for ApiDomainClientLive
impl Unpin for ApiDomainClientLive
impl !UnwindSafe for ApiDomainClientLive
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more