pub struct ClickPipeMySQLSource {
pub authentication: Option<ClickPipeMySQLSourceAuthentication>,
pub ca_certificate: Option<String>,
pub disable_tls: Option<bool>,
pub host: String,
pub iam_role: Option<String>,
pub port: i64,
pub settings: ClickPipeMySQLPipeSettings,
pub skip_cert_verification: Option<bool>,
pub table_mappings: Vec<ClickPipeMySQLPipeTableMapping>,
pub tls_host: Option<String>,
pub type: Option<ClickPipeMySQLSourceType>,
}Expand description
ClickPipeMySQLSource from the ClickHouse Cloud API.
Fields§
§authentication: Option<ClickPipeMySQLSourceAuthentication>§ca_certificate: Option<String>§disable_tls: Option<bool>§host: String§iam_role: Option<String>§port: i64§settings: ClickPipeMySQLPipeSettings§skip_cert_verification: Option<bool>§table_mappings: Vec<ClickPipeMySQLPipeTableMapping>§tls_host: Option<String>§type: Option<ClickPipeMySQLSourceType>Trait Implementations§
Source§impl Clone for ClickPipeMySQLSource
impl Clone for ClickPipeMySQLSource
Source§fn clone(&self) -> ClickPipeMySQLSource
fn clone(&self) -> ClickPipeMySQLSource
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 ClickPipeMySQLSource
impl Debug for ClickPipeMySQLSource
Source§impl Default for ClickPipeMySQLSource
impl Default for ClickPipeMySQLSource
Source§fn default() -> ClickPipeMySQLSource
fn default() -> ClickPipeMySQLSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickPipeMySQLSource
impl<'de> Deserialize<'de> for ClickPipeMySQLSource
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 ClickPipeMySQLSource
impl PartialEq for ClickPipeMySQLSource
Source§fn eq(&self, other: &ClickPipeMySQLSource) -> bool
fn eq(&self, other: &ClickPipeMySQLSource) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClickPipeMySQLSource
impl Serialize for ClickPipeMySQLSource
impl StructuralPartialEq for ClickPipeMySQLSource
Auto Trait Implementations§
impl Freeze for ClickPipeMySQLSource
impl RefUnwindSafe for ClickPipeMySQLSource
impl Send for ClickPipeMySQLSource
impl Sync for ClickPipeMySQLSource
impl Unpin for ClickPipeMySQLSource
impl UnsafeUnpin for ClickPipeMySQLSource
impl UnwindSafe for ClickPipeMySQLSource
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