[][src]Struct rusoto_glacier::CSVInput

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>,
}

Contains information about the comma-separated value (CSV) file to select from.

Fields

comments: Option<String>

A single character used to indicate that a row should be ignored when the character is present at the start of that row.

field_delimiter: Option<String>

A value used to separate individual fields from each other within a record.

file_header_info: Option<String>

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

quote_character: Option<String>

A value used as an escape character where the field delimiter is part of the value.

quote_escape_character: Option<String>

A single character used for escaping the quotation-mark character inside an already escaped value.

record_delimiter: Option<String>

A value used to separate individual records from each other.

Trait Implementations

impl Clone for CSVInput[src]

impl Debug for CSVInput[src]

impl Default for CSVInput[src]

impl<'de> Deserialize<'de> for CSVInput[src]

impl PartialEq<CSVInput> for CSVInput[src]

impl Serialize for CSVInput[src]

impl StructuralPartialEq for CSVInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.