Struct google_content2::api::DatafeedFormat [−][src]
pub struct DatafeedFormat {
pub column_delimiter: Option<String>,
pub file_encoding: Option<String>,
pub quoting_mode: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
column_delimiter: Option<String>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. Acceptable values are: - “pipe” - “tab” - “tilde”
file_encoding: Option<String>Character encoding scheme of the data feed. If not specified, the encoding will be auto-detected. Acceptable values are: - “latin-1” - “utf-16be” - “utf-16le” - “utf-8” - “windows-1252”
quoting_mode: Option<String>Specifies how double quotes are interpreted. If not specified, the mode will be auto-detected. Ignored for non-DSV data feeds. Acceptable values are: - “normal character” - “value quoting”
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for DatafeedFormat
impl Send for DatafeedFormat
impl Sync for DatafeedFormat
impl Unpin for DatafeedFormat
impl UnwindSafe for DatafeedFormat
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more