pub struct ProjectServiceAccount {
pub object: String,
pub id: String,
pub name: String,
pub role: String,
pub created_at: i64,
}
Expand description
Represents an individual service account in a project.
Fields§
§object: String
The object type, which is always organization.project.service_account
id: String
The identifier, which can be referenced in API endpoints
name: String
The name of the service account
role: String
owner
or member
created_at: i64
The Unix timestamp (in seconds) of when the service account was created
Trait Implementations§
Source§impl Clone for ProjectServiceAccount
impl Clone for ProjectServiceAccount
Source§fn clone(&self) -> ProjectServiceAccount
fn clone(&self) -> ProjectServiceAccount
Returns a copy 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 ProjectServiceAccount
impl Debug for ProjectServiceAccount
Source§impl Default for ProjectServiceAccount
impl Default for ProjectServiceAccount
Source§fn default() -> ProjectServiceAccount
fn default() -> ProjectServiceAccount
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProjectServiceAccount
impl RefUnwindSafe for ProjectServiceAccount
impl Send for ProjectServiceAccount
impl Sync for ProjectServiceAccount
impl Unpin for ProjectServiceAccount
impl UnwindSafe for ProjectServiceAccount
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