pub struct ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with call().
Implementations§
Source§impl<'f1, 'f2, 'f3, S: State> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
impl<'f1, 'f2, 'f3, S: State> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
Sourcepub async fn call(
self,
) -> Result<ApiKeyDeletionResponse, Error<ProjectsDeleteApiKeyError>>where
S: IsComplete,
pub async fn call(
self,
) -> Result<ApiKeyDeletionResponse, Error<ProjectsDeleteApiKeyError>>where
S: IsComplete,
Finishes building and performs the requested action.
Sourcepub fn configuration(
self,
value: &'f1 Configuration,
) -> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, SetConfiguration<S>>where
S::Configuration: IsUnset,
pub fn configuration(
self,
value: &'f1 Configuration,
) -> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, SetConfiguration<S>>where
S::Configuration: IsUnset,
Required.
Sourcepub fn project_id(
self,
value: &'f2 str,
) -> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, SetProjectId<S>>where
S::ProjectId: IsUnset,
pub fn project_id(
self,
value: &'f2 str,
) -> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, SetProjectId<S>>where
S::ProjectId: IsUnset,
Required.
Sourcepub fn api_key_id(
self,
value: &'f3 str,
) -> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, SetApiKeyId<S>>where
S::ApiKeyId: IsUnset,
pub fn api_key_id(
self,
value: &'f3 str,
) -> ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, SetApiKeyId<S>>where
S::ApiKeyId: IsUnset,
Required.
Auto Trait Implementations§
impl<'f1, 'f2, 'f3, S> Freeze for ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
impl<'f1, 'f2, 'f3, S = Empty> !RefUnwindSafe for ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
impl<'f1, 'f2, 'f3, S> Send for ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
impl<'f1, 'f2, 'f3, S> Sync for ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
impl<'f1, 'f2, 'f3, S> Unpin for ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
impl<'f1, 'f2, 'f3, S = Empty> !UnwindSafe for ProjectsDeleteApiKeyBuilder<'f1, 'f2, 'f3, S>
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