pub struct GcpSecretManagerVaultHeartbeatData {
pub location: String,
pub prefix: String,
pub project_id: String,
pub secret_metadata_listed: bool,
pub status: VaultHeartbeatStatus,
}Expand description
GcpSecretManagerVaultHeartbeatData
JSON schema
{
"type": "object",
"required": [
"location",
"prefix",
"projectId",
"secretMetadataListed",
"status"
],
"properties": {
"location": {
"type": "string"
},
"prefix": {
"type": "string"
},
"projectId": {
"type": "string"
},
"secretMetadataListed": {
"type": "boolean"
},
"status": {
"$ref": "#/components/schemas/VaultHeartbeatStatus"
}
}
}Fields§
§location: String§prefix: String§project_id: String§secret_metadata_listed: bool§status: VaultHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for GcpSecretManagerVaultHeartbeatData
impl Clone for GcpSecretManagerVaultHeartbeatData
Source§fn clone(&self) -> GcpSecretManagerVaultHeartbeatData
fn clone(&self) -> GcpSecretManagerVaultHeartbeatData
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 GcpSecretManagerVaultHeartbeatData
impl<'de> Deserialize<'de> for GcpSecretManagerVaultHeartbeatData
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 From<&GcpSecretManagerVaultHeartbeatData> for GcpSecretManagerVaultHeartbeatData
impl From<&GcpSecretManagerVaultHeartbeatData> for GcpSecretManagerVaultHeartbeatData
Source§fn from(value: &GcpSecretManagerVaultHeartbeatData) -> Self
fn from(value: &GcpSecretManagerVaultHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<GcpSecretManagerVaultHeartbeatData> for GcpSecretManagerVaultHeartbeatData
impl From<GcpSecretManagerVaultHeartbeatData> for GcpSecretManagerVaultHeartbeatData
Source§fn from(value: GcpSecretManagerVaultHeartbeatData) -> Self
fn from(value: GcpSecretManagerVaultHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GcpSecretManagerVaultHeartbeatData> for GcpSecretManagerVaultHeartbeatData
impl TryFrom<GcpSecretManagerVaultHeartbeatData> for GcpSecretManagerVaultHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GcpSecretManagerVaultHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: GcpSecretManagerVaultHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GcpSecretManagerVaultHeartbeatData
impl RefUnwindSafe for GcpSecretManagerVaultHeartbeatData
impl Send for GcpSecretManagerVaultHeartbeatData
impl Sync for GcpSecretManagerVaultHeartbeatData
impl Unpin for GcpSecretManagerVaultHeartbeatData
impl UnsafeUnpin for GcpSecretManagerVaultHeartbeatData
impl UnwindSafe for GcpSecretManagerVaultHeartbeatData
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