Struct rusoto_s3::CSVInput[][src]

pub struct CSVInput {
    pub comments: Option<String>,
    pub field_delimiter: Option<String>,
    pub file_header_info: Option<String>,
    pub quote_character: Option<String>,
    pub quote_escape_character: Option<String>,
    pub record_delimiter: Option<String>,
}

Describes how a CSV-formatted input object is formatted.

Fields

Single character used to indicate a row should be ignored when present at the start of a row.

Value used to separate individual fields in a record.

Describes the first line of input. Valid values: None, Ignore, Use.

Value used for escaping where the field delimiter is part of the value.

Single character used for escaping the quote character inside an already escaped value.

Value used to separate individual records.

Trait Implementations

impl Default for CSVInput
[src]

Returns the "default value" for a type. Read more

impl Debug for CSVInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CSVInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CSVInput
[src]

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 Send for CSVInput

impl Sync for CSVInput