pub enum PostgresWriteMode {
Materialized,
Cdc,
}Expand description
PostgreSQL write mode.
Determines how the PostgreSQL output connector writes data to the target table.
JSON schema
{
"description": "PostgreSQL write mode.\n\nDetermines how the PostgreSQL output connector writes data to the target table.",
"type": "string",
"enum": [
"materialized",
"cdc"
]
}Variants§
Trait Implementations§
Source§impl Clone for PostgresWriteMode
impl Clone for PostgresWriteMode
Source§fn clone(&self) -> PostgresWriteMode
fn clone(&self) -> PostgresWriteMode
Returns a duplicate of the value. Read more
1.0.0 · 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 PostgresWriteMode
impl Debug for PostgresWriteMode
Source§impl<'de> Deserialize<'de> for PostgresWriteMode
impl<'de> Deserialize<'de> for PostgresWriteMode
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<&PostgresWriteMode> for PostgresWriteMode
impl From<&PostgresWriteMode> for PostgresWriteMode
Source§fn from(value: &PostgresWriteMode) -> Self
fn from(value: &PostgresWriteMode) -> Self
Converts to this type from the input type.
Source§impl FromStr for PostgresWriteMode
impl FromStr for PostgresWriteMode
Source§impl Hash for PostgresWriteMode
impl Hash for PostgresWriteMode
Source§impl Ord for PostgresWriteMode
impl Ord for PostgresWriteMode
Source§fn cmp(&self, other: &PostgresWriteMode) -> Ordering
fn cmp(&self, other: &PostgresWriteMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PostgresWriteMode
impl PartialEq for PostgresWriteMode
Source§impl PartialOrd for PostgresWriteMode
impl PartialOrd for PostgresWriteMode
Source§impl Serialize for PostgresWriteMode
impl Serialize for PostgresWriteMode
Source§impl ToString for PostgresWriteMode
impl ToString for PostgresWriteMode
Source§impl TryFrom<&String> for PostgresWriteMode
impl TryFrom<&String> for PostgresWriteMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for PostgresWriteMode
impl TryFrom<&str> for PostgresWriteMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for PostgresWriteMode
impl TryFrom<String> for PostgresWriteMode
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for PostgresWriteMode
impl Eq for PostgresWriteMode
impl StructuralPartialEq for PostgresWriteMode
Auto Trait Implementations§
impl Freeze for PostgresWriteMode
impl RefUnwindSafe for PostgresWriteMode
impl Send for PostgresWriteMode
impl Sync for PostgresWriteMode
impl Unpin for PostgresWriteMode
impl UnwindSafe for PostgresWriteMode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.