#[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
sourceimpl 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.
sourceimpl DelimitedTextImportOptions
impl DelimitedTextImportOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DelimitedTextImportOptions
.
Trait Implementations
sourceimpl Clone for DelimitedTextImportOptions
impl Clone for DelimitedTextImportOptions
sourcefn clone(&self) -> DelimitedTextImportOptions
fn clone(&self) -> DelimitedTextImportOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DelimitedTextImportOptions
impl Debug for DelimitedTextImportOptions
sourceimpl PartialEq<DelimitedTextImportOptions> for DelimitedTextImportOptions
impl PartialEq<DelimitedTextImportOptions> for DelimitedTextImportOptions
sourcefn eq(&self, other: &DelimitedTextImportOptions) -> bool
fn eq(&self, other: &DelimitedTextImportOptions) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more