Struct google_content2::DatafeedStatus [] [src]

pub struct DatafeedStatus {
    pub kind: Option<String>,
    pub errors: Option<Vec<DatafeedStatusError>>,
    pub warnings: Option<Vec<DatafeedStatusError>>,
    pub items_total: Option<String>,
    pub processing_status: Option<String>,
    pub last_upload_date: Option<String>,
    pub items_valid: Option<String>,
    pub datafeed_id: Option<String>,
}

The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Identifies what kind of resource this is. Value: the fixed string "content#datafeedStatus".

The list of errors occurring in the feed.

The list of errors occurring in the feed.

The number of items in the feed that were processed.

The processing status of the feed.

The last date at which the feed was uploaded.

The number of items in the feed that were valid.

The ID of the feed for which the status is reported.

Trait Implementations

impl Debug for DatafeedStatus
[src]

Formats the value using the given formatter.

impl Clone for DatafeedStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for DatafeedStatus
[src]

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

impl ResponseResult for DatafeedStatus
[src]