pub enum ServiceAccountHeartbeatData {
AwsIamRole(AwsIamRoleServiceAccountHeartbeatData),
GcpServiceAccount(GcpServiceAccountHeartbeatData),
AzureManagedIdentity(AzureManagedIdentityServiceAccountHeartbeatData),
Local(LocalServiceAccountHeartbeatData),
}Variants§
AwsIamRole(AwsIamRoleServiceAccountHeartbeatData)
GcpServiceAccount(GcpServiceAccountHeartbeatData)
AzureManagedIdentity(AzureManagedIdentityServiceAccountHeartbeatData)
Local(LocalServiceAccountHeartbeatData)
Trait Implementations§
Source§impl Clone for ServiceAccountHeartbeatData
impl Clone for ServiceAccountHeartbeatData
Source§fn clone(&self) -> ServiceAccountHeartbeatData
fn clone(&self) -> ServiceAccountHeartbeatData
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 Debug for ServiceAccountHeartbeatData
impl Debug for ServiceAccountHeartbeatData
Source§impl<'de> Deserialize<'de> for ServiceAccountHeartbeatData
impl<'de> Deserialize<'de> for ServiceAccountHeartbeatData
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 ServiceAccountHeartbeatData
impl PartialEq for ServiceAccountHeartbeatData
Source§fn eq(&self, other: &ServiceAccountHeartbeatData) -> bool
fn eq(&self, other: &ServiceAccountHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServiceAccountHeartbeatData
Auto Trait Implementations§
impl Freeze for ServiceAccountHeartbeatData
impl RefUnwindSafe for ServiceAccountHeartbeatData
impl Send for ServiceAccountHeartbeatData
impl Sync for ServiceAccountHeartbeatData
impl Unpin for ServiceAccountHeartbeatData
impl UnsafeUnpin for ServiceAccountHeartbeatData
impl UnwindSafe for ServiceAccountHeartbeatData
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