pub struct ClickPipeObjectStorageSource {
pub authentication: Option<ClickPipeObjectStorageSourceAuthentication>,
pub azure_container_name: Option<String>,
pub compression: Option<ClickPipeObjectStorageSourceCompression>,
pub connection_string: Option<String>,
pub delimiter: Option<String>,
pub format: ClickPipeObjectStorageSourceFormat,
pub iam_role: Option<String>,
pub is_continuous: Option<bool>,
pub path: Option<String>,
pub queue_url: Option<String>,
pub type: ClickPipeObjectStorageSourceType,
pub url: String,
}Expand description
ClickPipeObjectStorageSource from the ClickHouse Cloud API.
Fields§
§authentication: Option<ClickPipeObjectStorageSourceAuthentication>§azure_container_name: Option<String>§compression: Option<ClickPipeObjectStorageSourceCompression>§connection_string: Option<String>§delimiter: Option<String>§format: ClickPipeObjectStorageSourceFormat§iam_role: Option<String>§is_continuous: Option<bool>§path: Option<String>§queue_url: Option<String>§type: ClickPipeObjectStorageSourceType§url: StringTrait Implementations§
Source§impl Clone for ClickPipeObjectStorageSource
impl Clone for ClickPipeObjectStorageSource
Source§fn clone(&self) -> ClickPipeObjectStorageSource
fn clone(&self) -> ClickPipeObjectStorageSource
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 ClickPipeObjectStorageSource
impl Debug for ClickPipeObjectStorageSource
Source§impl Default for ClickPipeObjectStorageSource
impl Default for ClickPipeObjectStorageSource
Source§fn default() -> ClickPipeObjectStorageSource
fn default() -> ClickPipeObjectStorageSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickPipeObjectStorageSource
impl<'de> Deserialize<'de> for ClickPipeObjectStorageSource
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 ClickPipeObjectStorageSource
impl PartialEq for ClickPipeObjectStorageSource
Source§fn eq(&self, other: &ClickPipeObjectStorageSource) -> bool
fn eq(&self, other: &ClickPipeObjectStorageSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickPipeObjectStorageSource
Auto Trait Implementations§
impl Freeze for ClickPipeObjectStorageSource
impl RefUnwindSafe for ClickPipeObjectStorageSource
impl Send for ClickPipeObjectStorageSource
impl Sync for ClickPipeObjectStorageSource
impl Unpin for ClickPipeObjectStorageSource
impl UnsafeUnpin for ClickPipeObjectStorageSource
impl UnwindSafe for ClickPipeObjectStorageSource
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