pub struct GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions {
pub delimiter: Option<String>,
pub encoding: Option<String>,
pub header_rows: Option<i32>,
pub quote: Option<String>,
pub type_inference_disabled: Option<bool>,
}Expand description
Describes CSV and similar semi-structured data formats.
This type is not used in any activity, and only used as part of another schema.
Fields§
§delimiter: Option<String>Optional. The delimiter that is used to separate values. The default is , (comma).
encoding: Option<String>Optional. The character encoding of the data. The default is UTF-8.
header_rows: Option<i32>Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.
quote: Option<String>Optional. The character used to quote column values. Accepts “ (double quotation mark) or ’ (single quotation mark). If unspecified, defaults to “ (double quotation mark).
type_inference_disabled: Option<bool>Optional. Whether to disable the inference of data types for CSV data. If true, all columns are registered as strings.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl Clone for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
Source§fn clone(&self) -> GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
fn clone(&self) -> GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
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 Default for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl Default for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
Source§fn default() -> GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
fn default() -> GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
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
impl Part for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl RefUnwindSafe for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl Send for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl Sync for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl Unpin for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl UnsafeUnpin for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
impl UnwindSafe for GoogleCloudDataplexV1DataDiscoverySpecStorageConfigCsvOptions
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