pub struct ProjectServiceAccountDeleteResponse {
pub id: String,
pub deleted: bool,
}
Fields§
§id: String
§deleted: bool
Implementations§
Source§impl ProjectServiceAccountDeleteResponse
impl ProjectServiceAccountDeleteResponse
Sourcepub fn builder() -> ProjectServiceAccountDeleteResponseBuilder<((), ())>
pub fn builder() -> ProjectServiceAccountDeleteResponseBuilder<((), ())>
Create a builder for building ProjectServiceAccountDeleteResponse
.
On the builder, call .id(...)
, .deleted(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ProjectServiceAccountDeleteResponse
.
Trait Implementations§
Source§impl Clone for ProjectServiceAccountDeleteResponse
impl Clone for ProjectServiceAccountDeleteResponse
Source§fn clone(&self) -> ProjectServiceAccountDeleteResponse
fn clone(&self) -> ProjectServiceAccountDeleteResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for ProjectServiceAccountDeleteResponse
impl<'de> Deserialize<'de> for ProjectServiceAccountDeleteResponse
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 ProjectServiceAccountDeleteResponse
impl PartialEq for ProjectServiceAccountDeleteResponse
Source§fn eq(&self, other: &ProjectServiceAccountDeleteResponse) -> bool
fn eq(&self, other: &ProjectServiceAccountDeleteResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ProjectServiceAccountDeleteResponse
Auto Trait Implementations§
impl Freeze for ProjectServiceAccountDeleteResponse
impl RefUnwindSafe for ProjectServiceAccountDeleteResponse
impl Send for ProjectServiceAccountDeleteResponse
impl Sync for ProjectServiceAccountDeleteResponse
impl Unpin for ProjectServiceAccountDeleteResponse
impl UnwindSafe for ProjectServiceAccountDeleteResponse
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