pub struct AzureTableKvHeartbeatData {
pub status: KvHeartbeatStatus,
pub table_name: String,
pub storage_account_name: String,
pub resource_group: Option<String>,
pub endpoint: Option<String>,
pub storage_account_resource_id: Option<String>,
pub storage_account_location: Option<String>,
pub storage_account_kind: Option<String>,
pub storage_account_provisioning_state: Option<String>,
pub storage_account_primary_status: Option<String>,
pub table_exists: bool,
pub signed_identifier_count: Option<u32>,
}Fields§
§status: KvHeartbeatStatus§table_name: String§storage_account_name: String§resource_group: Option<String>§endpoint: Option<String>§storage_account_resource_id: Option<String>§storage_account_location: Option<String>§storage_account_kind: Option<String>§storage_account_provisioning_state: Option<String>§storage_account_primary_status: Option<String>§table_exists: bool§signed_identifier_count: Option<u32>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 PartialEq for AzureTableKvHeartbeatData
impl PartialEq for AzureTableKvHeartbeatData
Source§fn eq(&self, other: &AzureTableKvHeartbeatData) -> bool
fn eq(&self, other: &AzureTableKvHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AzureTableKvHeartbeatData
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