Struct aws_sdk_honeycode::model::DelimitedTextImportOptions [−][src]
#[non_exhaustive]pub struct DelimitedTextImportOptions {
pub delimiter: Option<String>,
pub has_header_row: bool,
pub ignore_empty_rows: bool,
pub data_character_encoding: Option<ImportDataCharacterEncoding>,
}
Expand description
An object that contains the options relating to parsing delimited text as part of an import request.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.delimiter: Option<String>
The delimiter to use for separating columns in a single row of the input.
has_header_row: bool
Indicates whether the input file has a header row at the top containing the column names.
ignore_empty_rows: bool
A parameter to indicate whether empty rows should be ignored or be included in the import.
data_character_encoding: Option<ImportDataCharacterEncoding>
The encoding of the data in the input file.
Implementations
The delimiter to use for separating columns in a single row of the input.
Indicates whether the input file has a header row at the top containing the column names.
A parameter to indicate whether empty rows should be ignored or be included in the import.
The encoding of the data in the input file.
Creates a new builder-style object to manufacture DelimitedTextImportOptions
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more