pub struct InstallationsApiClient { /* private fields */ }Implementations§
Source§impl InstallationsApiClient
impl InstallationsApiClient
pub fn new(configuration: Arc<Configuration>) -> Self
Trait Implementations§
Source§impl InstallationsApi for InstallationsApiClient
impl InstallationsApi for InstallationsApiClient
Source§fn get<'a, 'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<InstallationResponseModel, Error<GetError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get<'a, 'life0, 'async_trait>(
&'life0 self,
id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<InstallationResponseModel, Error<GetError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /installations/{id}
Source§fn post<'a, 'life0, 'async_trait>(
&'life0 self,
installation_request_model: Option<InstallationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<InstallationResponseModel, Error<PostError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn post<'a, 'life0, 'async_trait>(
&'life0 self,
installation_request_model: Option<InstallationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<InstallationResponseModel, Error<PostError>>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /installations
Auto Trait Implementations§
impl Freeze for InstallationsApiClient
impl !RefUnwindSafe for InstallationsApiClient
impl Send for InstallationsApiClient
impl Sync for InstallationsApiClient
impl Unpin for InstallationsApiClient
impl !UnwindSafe for InstallationsApiClient
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more