Struct google_content2::DatafeedFormat[][src]

pub struct DatafeedFormat {
    pub file_encoding: Option<String>,
    pub quoting_mode: Option<String>,
    pub column_delimiter: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected.

Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds.

Delimiter for the separation of values in a delimiter-separated values feed. If not specified, the delimiter will be auto-detected. Ignored for non-DSV data feeds.

Trait Implementations

impl Default for DatafeedFormat
[src]

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

impl Clone for DatafeedFormat
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DatafeedFormat
[src]

Formats the value using the given formatter. Read more

impl Part for DatafeedFormat
[src]

Auto Trait Implementations