pub enum KvHeartbeatData {
AwsDynamoDb(AwsDynamoDbKvHeartbeatData),
GcpFirestore(GcpFirestoreKvHeartbeatData),
AzureTable(AzureTableKvHeartbeatData),
Local(LocalKvHeartbeatData),
}Variants§
AwsDynamoDb(AwsDynamoDbKvHeartbeatData)
GcpFirestore(GcpFirestoreKvHeartbeatData)
AzureTable(AzureTableKvHeartbeatData)
Local(LocalKvHeartbeatData)
Trait Implementations§
Source§impl Clone for KvHeartbeatData
impl Clone for KvHeartbeatData
Source§fn clone(&self) -> KvHeartbeatData
fn clone(&self) -> KvHeartbeatData
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 KvHeartbeatData
impl Debug for KvHeartbeatData
Source§impl<'de> Deserialize<'de> for KvHeartbeatData
impl<'de> Deserialize<'de> for KvHeartbeatData
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 KvHeartbeatData
impl PartialEq for KvHeartbeatData
Source§fn eq(&self, other: &KvHeartbeatData) -> bool
fn eq(&self, other: &KvHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KvHeartbeatData
impl Serialize for KvHeartbeatData
impl StructuralPartialEq for KvHeartbeatData
Auto Trait Implementations§
impl Freeze for KvHeartbeatData
impl RefUnwindSafe for KvHeartbeatData
impl Send for KvHeartbeatData
impl Sync for KvHeartbeatData
impl Unpin for KvHeartbeatData
impl UnsafeUnpin for KvHeartbeatData
impl UnwindSafe for KvHeartbeatData
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