pub struct GcpServiceAccountHeartbeatData {Show 14 fields
pub status: ServiceAccountHeartbeatStatus,
pub name: Option<String>,
pub project_id: Option<String>,
pub unique_id: Option<String>,
pub email: String,
pub display_name: Option<String>,
pub description: Option<String>,
pub oauth2_client_id: Option<String>,
pub disabled: Option<bool>,
pub etag: Option<String>,
pub project_binding_count: u32,
pub project_roles: Vec<String>,
pub service_account_binding_count: u32,
pub service_account_roles: Vec<String>,
}Fields§
§status: ServiceAccountHeartbeatStatus§name: Option<String>§project_id: Option<String>§unique_id: Option<String>§email: String§display_name: Option<String>§description: Option<String>§oauth2_client_id: Option<String>§disabled: Option<bool>§etag: Option<String>§project_binding_count: u32§project_roles: Vec<String>§service_account_binding_count: u32§service_account_roles: Vec<String>Trait Implementations§
Source§impl Clone for GcpServiceAccountHeartbeatData
impl Clone for GcpServiceAccountHeartbeatData
Source§fn clone(&self) -> GcpServiceAccountHeartbeatData
fn clone(&self) -> GcpServiceAccountHeartbeatData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GcpServiceAccountHeartbeatData
impl<'de> Deserialize<'de> for GcpServiceAccountHeartbeatData
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 GcpServiceAccountHeartbeatData
impl PartialEq for GcpServiceAccountHeartbeatData
Source§fn eq(&self, other: &GcpServiceAccountHeartbeatData) -> bool
fn eq(&self, other: &GcpServiceAccountHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GcpServiceAccountHeartbeatData
Auto Trait Implementations§
impl Freeze for GcpServiceAccountHeartbeatData
impl RefUnwindSafe for GcpServiceAccountHeartbeatData
impl Send for GcpServiceAccountHeartbeatData
impl Sync for GcpServiceAccountHeartbeatData
impl Unpin for GcpServiceAccountHeartbeatData
impl UnsafeUnpin for GcpServiceAccountHeartbeatData
impl UnwindSafe for GcpServiceAccountHeartbeatData
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