pub struct MockOrganizationIntegrationConfigurationApi {
OrganizationIntegrationConfigurationApi_expectations: MockOrganizationIntegrationConfigurationApi_OrganizationIntegrationConfigurationApi,
}Fields§
§OrganizationIntegrationConfigurationApi_expectations: MockOrganizationIntegrationConfigurationApi_OrganizationIntegrationConfigurationApiImplementations§
Source§impl MockOrganizationIntegrationConfigurationApi
impl MockOrganizationIntegrationConfigurationApi
Sourcepub fn checkpoint(&mut self)
pub fn checkpoint(&mut self)
Validate that all current expectations for all methods have been satisfied, and discard them.
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new mock object with no expectations.
This method will not be generated if the real struct
already has a new method. However, it will be
generated if the struct implements a trait with a new
method. The trait’s new method can still be called
like <MockX as TraitY>::new
Source§impl MockOrganizationIntegrationConfigurationApi
impl MockOrganizationIntegrationConfigurationApi
Sourcepub fn expect_create(&mut self) -> &mut Expectation
pub fn expect_create(&mut self) -> &mut Expectation
Create an Expectation for mocking the create method
Sourcepub fn expect_delete(&mut self) -> &mut Expectation
pub fn expect_delete(&mut self) -> &mut Expectation
Create an Expectation for mocking the delete method
Sourcepub fn expect_get(&mut self) -> &mut Expectation
pub fn expect_get(&mut self) -> &mut Expectation
Create an Expectation for mocking the get method
Sourcepub fn expect_update(&mut self) -> &mut Expectation
pub fn expect_update(&mut self) -> &mut Expectation
Create an Expectation for mocking the update method
Trait Implementations§
Source§impl OrganizationIntegrationConfigurationApi for MockOrganizationIntegrationConfigurationApi
impl OrganizationIntegrationConfigurationApi for MockOrganizationIntegrationConfigurationApi
Source§fn create<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
organization_integration_configuration_request_model: Option<OrganizationIntegrationConfigurationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationConfigurationResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn create<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
organization_integration_configuration_request_model: Option<OrganizationIntegrationConfigurationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationConfigurationResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
POST /organizations/{organizationId}/integrations/{integrationId}/configurations
Source§fn delete<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
configuration_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn delete<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
configuration_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
DELETE /organizations/{organizationId}/integrations/{integrationId}/configurations/ {configurationId}
Source§fn get<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<OrganizationIntegrationConfigurationResponseModel>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn get<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
) -> Pin<Box<dyn Future<Output = Result<Vec<OrganizationIntegrationConfigurationResponseModel>, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
GET /organizations/{organizationId}/integrations/{integrationId}/configurations
Source§fn update<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
configuration_id: Uuid,
organization_integration_configuration_request_model: Option<OrganizationIntegrationConfigurationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationConfigurationResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
fn update<'a, 'life0, 'async_trait>(
&'life0 self,
organization_id: Uuid,
integration_id: Uuid,
configuration_id: Uuid,
organization_integration_configuration_request_model: Option<OrganizationIntegrationConfigurationRequestModel>,
) -> Pin<Box<dyn Future<Output = Result<OrganizationIntegrationConfigurationResponseModel, Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'a: 'async_trait,
'life0: 'async_trait,
PUT /organizations/{organizationId}/integrations/{integrationId}/configurations/ {configurationId}
Auto Trait Implementations§
impl Freeze for MockOrganizationIntegrationConfigurationApi
impl RefUnwindSafe for MockOrganizationIntegrationConfigurationApi
impl Send for MockOrganizationIntegrationConfigurationApi
impl Sync for MockOrganizationIntegrationConfigurationApi
impl Unpin for MockOrganizationIntegrationConfigurationApi
impl UnsafeUnpin for MockOrganizationIntegrationConfigurationApi
impl UnwindSafe for MockOrganizationIntegrationConfigurationApi
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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
§impl<T> CompatExt for T
impl<T> CompatExt for T
§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<> Read more