Struct google_content2::api::DatafeedStatusError [−][src]
pub struct DatafeedStatusError {
pub code: Option<String>,
pub count: Option<String>,
pub examples: Option<Vec<DatafeedStatusExample>>,
pub message: Option<String>,
}Expand description
An error occurring in the feed, like “invalid price”.
This type is not used in any activity, and only used as part of another schema.
Fields
code: Option<String>The code of the error, e.g., “validation/invalid_value”.
count: Option<String>The number of occurrences of the error in the feed.
examples: Option<Vec<DatafeedStatusExample>>A list of example occurrences of the error, grouped by product.
message: Option<String>The error message, e.g., “Invalid price”.
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 DatafeedStatusError
impl Send for DatafeedStatusError
impl Sync for DatafeedStatusError
impl Unpin for DatafeedStatusError
impl UnwindSafe for DatafeedStatusError
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more