pub struct ApiDeploymentClientLive {
pub context: Context,
}
Fields§
§context: Context
Trait Implementations§
source§impl ApiDeploymentClient for ApiDeploymentClientLive
impl ApiDeploymentClient for ApiDeploymentClientLive
fn deploy<'life0, 'life1, 'async_trait>(
&'life0 self,
value: &'life1 ApiDeploymentRequest,
) -> Pin<Box<dyn Future<Output = Result<ApiDeployment, Error<ApiDeploymentError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn list_deployments<'life0, 'life1, 'async_trait>(
&'life0 self,
api_definition_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Vec<ApiDeployment>, Error<ApiDeploymentError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get_deployment<'life0, 'life1, 'async_trait>(
&'life0 self,
site: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<ApiDeployment, Error<ApiDeploymentError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn delete_deployment<'life0, 'life1, 'async_trait>(
&'life0 self,
site: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<String, Error<ApiDeploymentError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Auto Trait Implementations§
impl Freeze for ApiDeploymentClientLive
impl !RefUnwindSafe for ApiDeploymentClientLive
impl Send for ApiDeploymentClientLive
impl Sync for ApiDeploymentClientLive
impl Unpin for ApiDeploymentClientLive
impl !UnwindSafe for ApiDeploymentClientLive
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