pub struct RetrieveProjectServiceAccountParams {
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 RetrieveProjectServiceAccountParams
impl RetrieveProjectServiceAccountParams
Sourcepub fn builder() -> RetrieveProjectServiceAccountParamsBuilder<((), ())>
pub fn builder() -> RetrieveProjectServiceAccountParamsBuilder<((), ())>
Create a builder for building RetrieveProjectServiceAccountParams
.
On the builder, call .project_id(...)
, .service_account_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of RetrieveProjectServiceAccountParams
.
Trait Implementations§
Source§impl Clone for RetrieveProjectServiceAccountParams
impl Clone for RetrieveProjectServiceAccountParams
Source§fn clone(&self) -> RetrieveProjectServiceAccountParams
fn clone(&self) -> RetrieveProjectServiceAccountParams
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 RetrieveProjectServiceAccountParams
impl<'de> Deserialize<'de> for RetrieveProjectServiceAccountParams
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 RetrieveProjectServiceAccountParams
impl PartialEq for RetrieveProjectServiceAccountParams
Source§fn eq(&self, other: &RetrieveProjectServiceAccountParams) -> bool
fn eq(&self, other: &RetrieveProjectServiceAccountParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RetrieveProjectServiceAccountParams
Auto Trait Implementations§
impl Freeze for RetrieveProjectServiceAccountParams
impl RefUnwindSafe for RetrieveProjectServiceAccountParams
impl Send for RetrieveProjectServiceAccountParams
impl Sync for RetrieveProjectServiceAccountParams
impl Unpin for RetrieveProjectServiceAccountParams
impl UnwindSafe for RetrieveProjectServiceAccountParams
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