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