pub enum PostgresHeartbeatData {
Aurora(AuroraPostgresHeartbeatData),
CloudSql(GcpCloudSqlPostgresHeartbeatData),
FlexibleServer(AzureFlexibleServerPostgresHeartbeatData),
Local(LocalPostgresHeartbeatData),
}Variants§
Aurora(AuroraPostgresHeartbeatData)
AWS Aurora Serverless v2 backend.
CloudSql(GcpCloudSqlPostgresHeartbeatData)
GCP Cloud SQL backend.
FlexibleServer(AzureFlexibleServerPostgresHeartbeatData)
Azure Flexible Server backend.
Local(LocalPostgresHeartbeatData)
Local embedded Postgres backend.
Trait Implementations§
Source§impl Clone for PostgresHeartbeatData
impl Clone for PostgresHeartbeatData
Source§fn clone(&self) -> PostgresHeartbeatData
fn clone(&self) -> PostgresHeartbeatData
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 PostgresHeartbeatData
impl Debug for PostgresHeartbeatData
Source§impl<'de> Deserialize<'de> for PostgresHeartbeatData
impl<'de> Deserialize<'de> for PostgresHeartbeatData
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 PostgresHeartbeatData
impl PartialEq for PostgresHeartbeatData
Source§fn eq(&self, other: &PostgresHeartbeatData) -> bool
fn eq(&self, other: &PostgresHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PostgresHeartbeatData
impl Serialize for PostgresHeartbeatData
impl StructuralPartialEq for PostgresHeartbeatData
Auto Trait Implementations§
impl Freeze for PostgresHeartbeatData
impl RefUnwindSafe for PostgresHeartbeatData
impl Send for PostgresHeartbeatData
impl Sync for PostgresHeartbeatData
impl Unpin for PostgresHeartbeatData
impl UnsafeUnpin for PostgresHeartbeatData
impl UnwindSafe for PostgresHeartbeatData
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