pub struct DeleteProjectServiceAccountParams {
pub project_id: String,
pub service_account_id: String,
}
Fields§
§project_id: String
The ID of the project.
service_account_id: String
The ID of the service account.
Implementations§
Source§impl DeleteProjectServiceAccountParams
impl DeleteProjectServiceAccountParams
Sourcepub fn builder() -> DeleteProjectServiceAccountParamsBuilder<((), ())>
pub fn builder() -> DeleteProjectServiceAccountParamsBuilder<((), ())>
Create a builder for building DeleteProjectServiceAccountParams
.
On the builder, call .project_id(...)
, .service_account_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of DeleteProjectServiceAccountParams
.
Trait Implementations§
Source§impl Clone for DeleteProjectServiceAccountParams
impl Clone for DeleteProjectServiceAccountParams
Source§fn clone(&self) -> DeleteProjectServiceAccountParams
fn clone(&self) -> DeleteProjectServiceAccountParams
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for DeleteProjectServiceAccountParams
impl<'de> Deserialize<'de> for DeleteProjectServiceAccountParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DeleteProjectServiceAccountParams
impl PartialEq for DeleteProjectServiceAccountParams
Source§fn eq(&self, other: &DeleteProjectServiceAccountParams) -> bool
fn eq(&self, other: &DeleteProjectServiceAccountParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteProjectServiceAccountParams
Auto Trait Implementations§
impl Freeze for DeleteProjectServiceAccountParams
impl RefUnwindSafe for DeleteProjectServiceAccountParams
impl Send for DeleteProjectServiceAccountParams
impl Sync for DeleteProjectServiceAccountParams
impl Unpin for DeleteProjectServiceAccountParams
impl UnwindSafe for DeleteProjectServiceAccountParams
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