pub struct AzureResourceGroupHeartbeatData {
pub location: Option<String>,
pub managed_tags: HashMap<String, String>,
pub name: String,
pub provisioning_state: Option<String>,
pub resource_id: Option<String>,
pub status: AzureResourceGroupHeartbeatStatus,
}Expand description
AzureResourceGroupHeartbeatData
JSON schema
{
"type": "object",
"required": [
"managedTags",
"name",
"status"
],
"properties": {
"location": {
"type": [
"string",
"null"
]
},
"managedTags": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"name": {
"type": "string"
},
"provisioningState": {
"type": [
"string",
"null"
]
},
"resourceId": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/AzureResourceGroupHeartbeatStatus"
}
}
}Fields§
§location: Option<String>§name: String§provisioning_state: Option<String>§resource_id: Option<String>§status: AzureResourceGroupHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for AzureResourceGroupHeartbeatData
impl Clone for AzureResourceGroupHeartbeatData
Source§fn clone(&self) -> AzureResourceGroupHeartbeatData
fn clone(&self) -> AzureResourceGroupHeartbeatData
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 AzureResourceGroupHeartbeatData
impl<'de> Deserialize<'de> for AzureResourceGroupHeartbeatData
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<&AzureResourceGroupHeartbeatData> for AzureResourceGroupHeartbeatData
impl From<&AzureResourceGroupHeartbeatData> for AzureResourceGroupHeartbeatData
Source§fn from(value: &AzureResourceGroupHeartbeatData) -> Self
fn from(value: &AzureResourceGroupHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureResourceGroupHeartbeatData> for ResourceHeartbeatData
impl From<AzureResourceGroupHeartbeatData> for ResourceHeartbeatData
Source§fn from(value: AzureResourceGroupHeartbeatData) -> Self
fn from(value: AzureResourceGroupHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureResourceGroupHeartbeatData> for AzureResourceGroupHeartbeatData
impl From<AzureResourceGroupHeartbeatData> for AzureResourceGroupHeartbeatData
Source§fn from(value: AzureResourceGroupHeartbeatData) -> Self
fn from(value: AzureResourceGroupHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureResourceGroupHeartbeatData> for AzureResourceGroupHeartbeatData
impl TryFrom<AzureResourceGroupHeartbeatData> for AzureResourceGroupHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AzureResourceGroupHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AzureResourceGroupHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureResourceGroupHeartbeatData
impl RefUnwindSafe for AzureResourceGroupHeartbeatData
impl Send for AzureResourceGroupHeartbeatData
impl Sync for AzureResourceGroupHeartbeatData
impl Unpin for AzureResourceGroupHeartbeatData
impl UnsafeUnpin for AzureResourceGroupHeartbeatData
impl UnwindSafe for AzureResourceGroupHeartbeatData
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