pub struct AzureTableKvHeartbeatData {
pub endpoint: Option<String>,
pub resource_group: Option<String>,
pub signed_identifier_count: Option<i32>,
pub status: KvHeartbeatStatus,
pub storage_account_kind: Option<String>,
pub storage_account_location: Option<String>,
pub storage_account_name: String,
pub storage_account_primary_status: Option<String>,
pub storage_account_provisioning_state: Option<String>,
pub storage_account_resource_id: Option<String>,
pub table_exists: bool,
pub table_name: String,
}Expand description
AzureTableKvHeartbeatData
JSON schema
{
"type": "object",
"required": [
"status",
"storageAccountName",
"tableExists",
"tableName"
],
"properties": {
"endpoint": {
"type": [
"string",
"null"
]
},
"resourceGroup": {
"type": [
"string",
"null"
]
},
"signedIdentifierCount": {
"type": [
"integer",
"null"
],
"format": "int32",
"minimum": 0.0
},
"status": {
"$ref": "#/components/schemas/KvHeartbeatStatus"
},
"storageAccountKind": {
"type": [
"string",
"null"
]
},
"storageAccountLocation": {
"type": [
"string",
"null"
]
},
"storageAccountName": {
"type": "string"
},
"storageAccountPrimaryStatus": {
"type": [
"string",
"null"
]
},
"storageAccountProvisioningState": {
"type": [
"string",
"null"
]
},
"storageAccountResourceId": {
"type": [
"string",
"null"
]
},
"tableExists": {
"type": "boolean"
},
"tableName": {
"type": "string"
}
}
}Fields§
§endpoint: Option<String>§resource_group: Option<String>§signed_identifier_count: Option<i32>§status: KvHeartbeatStatus§storage_account_kind: Option<String>§storage_account_location: Option<String>§storage_account_name: String§storage_account_primary_status: Option<String>§storage_account_provisioning_state: Option<String>§storage_account_resource_id: Option<String>§table_exists: bool§table_name: StringImplementations§
Source§impl AzureTableKvHeartbeatData
impl AzureTableKvHeartbeatData
pub fn builder() -> AzureTableKvHeartbeatData
Trait Implementations§
Source§impl Clone for AzureTableKvHeartbeatData
impl Clone for AzureTableKvHeartbeatData
Source§fn clone(&self) -> AzureTableKvHeartbeatData
fn clone(&self) -> AzureTableKvHeartbeatData
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 AzureTableKvHeartbeatData
impl Debug for AzureTableKvHeartbeatData
Source§impl<'de> Deserialize<'de> for AzureTableKvHeartbeatData
impl<'de> Deserialize<'de> for AzureTableKvHeartbeatData
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<&AzureTableKvHeartbeatData> for AzureTableKvHeartbeatData
impl From<&AzureTableKvHeartbeatData> for AzureTableKvHeartbeatData
Source§fn from(value: &AzureTableKvHeartbeatData) -> Self
fn from(value: &AzureTableKvHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureTableKvHeartbeatData> for AzureTableKvHeartbeatData
impl From<AzureTableKvHeartbeatData> for AzureTableKvHeartbeatData
Source§fn from(value: AzureTableKvHeartbeatData) -> Self
fn from(value: AzureTableKvHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureTableKvHeartbeatData> for AzureTableKvHeartbeatData
impl TryFrom<AzureTableKvHeartbeatData> for AzureTableKvHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AzureTableKvHeartbeatData) -> Result<Self, ConversionError>
fn try_from(value: AzureTableKvHeartbeatData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureTableKvHeartbeatData
impl RefUnwindSafe for AzureTableKvHeartbeatData
impl Send for AzureTableKvHeartbeatData
impl Sync for AzureTableKvHeartbeatData
impl Unpin for AzureTableKvHeartbeatData
impl UnsafeUnpin for AzureTableKvHeartbeatData
impl UnwindSafe for AzureTableKvHeartbeatData
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