#[non_exhaustive]pub struct DelimitedTextImportOptions { /* private fields */ }Expand description
An object that contains the options relating to parsing delimited text as part of an import request.
Implementations§
source§impl DelimitedTextImportOptions
impl DelimitedTextImportOptions
sourcepub fn delimiter(&self) -> Option<&str>
pub fn delimiter(&self) -> Option<&str>
The delimiter to use for separating columns in a single row of the input.
sourcepub fn has_header_row(&self) -> bool
pub fn has_header_row(&self) -> bool
Indicates whether the input file has a header row at the top containing the column names.
sourcepub fn ignore_empty_rows(&self) -> bool
pub fn ignore_empty_rows(&self) -> bool
A parameter to indicate whether empty rows should be ignored or be included in the import.
sourcepub fn data_character_encoding(&self) -> Option<&ImportDataCharacterEncoding>
pub fn data_character_encoding(&self) -> Option<&ImportDataCharacterEncoding>
The encoding of the data in the input file.
source§impl DelimitedTextImportOptions
impl DelimitedTextImportOptions
sourcepub fn builder() -> DelimitedTextImportOptionsBuilder
pub fn builder() -> DelimitedTextImportOptionsBuilder
Creates a new builder-style object to manufacture DelimitedTextImportOptions.
Trait Implementations§
source§impl Clone for DelimitedTextImportOptions
impl Clone for DelimitedTextImportOptions
source§fn clone(&self) -> DelimitedTextImportOptions
fn clone(&self) -> DelimitedTextImportOptions
Returns a copy 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 DelimitedTextImportOptions
impl Debug for DelimitedTextImportOptions
source§impl PartialEq<DelimitedTextImportOptions> for DelimitedTextImportOptions
impl PartialEq<DelimitedTextImportOptions> for DelimitedTextImportOptions
source§fn eq(&self, other: &DelimitedTextImportOptions) -> bool
fn eq(&self, other: &DelimitedTextImportOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DelimitedTextImportOptions
Auto Trait Implementations§
impl RefUnwindSafe for DelimitedTextImportOptions
impl Send for DelimitedTextImportOptions
impl Sync for DelimitedTextImportOptions
impl Unpin for DelimitedTextImportOptions
impl UnwindSafe for DelimitedTextImportOptions
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