pub struct UpdateCsvClassifierRequest {
pub allow_single_column: Option<bool>,
pub contains_header: Option<String>,
pub delimiter: Option<String>,
pub disable_value_trimming: Option<bool>,
pub header: Option<Vec<String>>,
pub name: String,
pub quote_symbol: Option<String>,
}
Expand description
Specifies a custom CSV classifier to be updated.
Fields§
§allow_single_column: Option<bool>
Enables the processing of files that contain only one column.
contains_header: Option<String>
Indicates whether the CSV file contains a header.
delimiter: Option<String>
A custom symbol to denote what separates each column entry in the row.
disable_value_trimming: Option<bool>
Specifies not to trim values before identifying the type of column values. The default value is true.
header: Option<Vec<String>>
A list of strings representing column names.
name: String
The name of the classifier.
quote_symbol: Option<String>
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.
Trait Implementations§
Source§impl Clone for UpdateCsvClassifierRequest
impl Clone for UpdateCsvClassifierRequest
Source§fn clone(&self) -> UpdateCsvClassifierRequest
fn clone(&self) -> UpdateCsvClassifierRequest
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 UpdateCsvClassifierRequest
impl Debug for UpdateCsvClassifierRequest
Source§impl Default for UpdateCsvClassifierRequest
impl Default for UpdateCsvClassifierRequest
Source§fn default() -> UpdateCsvClassifierRequest
fn default() -> UpdateCsvClassifierRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateCsvClassifierRequest
Auto Trait Implementations§
impl Freeze for UpdateCsvClassifierRequest
impl RefUnwindSafe for UpdateCsvClassifierRequest
impl Send for UpdateCsvClassifierRequest
impl Sync for UpdateCsvClassifierRequest
impl Unpin for UpdateCsvClassifierRequest
impl UnwindSafe for UpdateCsvClassifierRequest
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