pub struct AzureResourceProviderActivationHeartbeatData {
pub namespace: String,
pub provider_id: Option<String>,
pub registered: bool,
pub registration_policy: Option<String>,
pub registration_state: Option<String>,
pub resource_type_count: i32,
pub status: ServiceActivationHeartbeatStatus,
}Expand description
AzureResourceProviderActivationHeartbeatData
JSON schema
{
"type": "object",
"required": [
"namespace",
"registered",
"resourceTypeCount",
"status"
],
"properties": {
"namespace": {
"type": "string"
},
"providerId": {
"type": [
"string",
"null"
]
},
"registered": {
"type": "boolean"
},
"registrationPolicy": {
"type": [
"string",
"null"
]
},
"registrationState": {
"type": [
"string",
"null"
]
},
"resourceTypeCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"status": {
"$ref": "#/components/schemas/ServiceActivationHeartbeatStatus"
}
}
}Fields§
§namespace: String§provider_id: Option<String>§registered: bool§registration_policy: Option<String>§registration_state: Option<String>§resource_type_count: i32§status: ServiceActivationHeartbeatStatusImplementations§
Trait Implementations§
Source§impl Clone for AzureResourceProviderActivationHeartbeatData
impl Clone for AzureResourceProviderActivationHeartbeatData
Source§fn clone(&self) -> AzureResourceProviderActivationHeartbeatData
fn clone(&self) -> AzureResourceProviderActivationHeartbeatData
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 AzureResourceProviderActivationHeartbeatData
impl<'de> Deserialize<'de> for AzureResourceProviderActivationHeartbeatData
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<&AzureResourceProviderActivationHeartbeatData> for AzureResourceProviderActivationHeartbeatData
impl From<&AzureResourceProviderActivationHeartbeatData> for AzureResourceProviderActivationHeartbeatData
Source§fn from(value: &AzureResourceProviderActivationHeartbeatData) -> Self
fn from(value: &AzureResourceProviderActivationHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureResourceProviderActivationHeartbeatData> for AzureResourceProviderActivationHeartbeatData
impl From<AzureResourceProviderActivationHeartbeatData> for AzureResourceProviderActivationHeartbeatData
Source§fn from(value: AzureResourceProviderActivationHeartbeatData) -> Self
fn from(value: AzureResourceProviderActivationHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureResourceProviderActivationHeartbeatData> for AzureResourceProviderActivationHeartbeatData
impl TryFrom<AzureResourceProviderActivationHeartbeatData> for AzureResourceProviderActivationHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AzureResourceProviderActivationHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AzureResourceProviderActivationHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureResourceProviderActivationHeartbeatData
impl RefUnwindSafe for AzureResourceProviderActivationHeartbeatData
impl Send for AzureResourceProviderActivationHeartbeatData
impl Sync for AzureResourceProviderActivationHeartbeatData
impl Unpin for AzureResourceProviderActivationHeartbeatData
impl UnsafeUnpin for AzureResourceProviderActivationHeartbeatData
impl UnwindSafe for AzureResourceProviderActivationHeartbeatData
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