pub struct ProjectServiceAccountApiKey {
pub value: String,
pub name: String,
pub created_at: u64,
pub id: String,
}
Fields§
§value: String
§name: String
§created_at: u64
§id: String
Implementations§
Source§impl ProjectServiceAccountApiKey
impl ProjectServiceAccountApiKey
Sourcepub fn builder() -> ProjectServiceAccountApiKeyBuilder<((), (), (), ())>
pub fn builder() -> ProjectServiceAccountApiKeyBuilder<((), (), (), ())>
Create a builder for building ProjectServiceAccountApiKey
.
On the builder, call .value(...)
, .name(...)
, .created_at(...)
, .id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ProjectServiceAccountApiKey
.
Trait Implementations§
Source§impl Clone for ProjectServiceAccountApiKey
impl Clone for ProjectServiceAccountApiKey
Source§fn clone(&self) -> ProjectServiceAccountApiKey
fn clone(&self) -> ProjectServiceAccountApiKey
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 Debug for ProjectServiceAccountApiKey
impl Debug for ProjectServiceAccountApiKey
Source§impl<'de> Deserialize<'de> for ProjectServiceAccountApiKey
impl<'de> Deserialize<'de> for ProjectServiceAccountApiKey
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
impl StructuralPartialEq for ProjectServiceAccountApiKey
Auto Trait Implementations§
impl Freeze for ProjectServiceAccountApiKey
impl RefUnwindSafe for ProjectServiceAccountApiKey
impl Send for ProjectServiceAccountApiKey
impl Sync for ProjectServiceAccountApiKey
impl Unpin for ProjectServiceAccountApiKey
impl UnwindSafe for ProjectServiceAccountApiKey
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