Struct google_content2::DatafeedStatus
source · 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>,
}Expand description
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).
- get datafeedstatuses (response)
Fields§
§kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “content#datafeedStatus”.
errors: Option<Vec<DatafeedStatusError>>The list of errors occurring in the feed.
warnings: Option<Vec<DatafeedStatusError>>The list of errors occurring in the feed.
items_total: Option<String>The number of items in the feed that were processed.
processing_status: Option<String>The processing status of the feed.
last_upload_date: Option<String>The last date at which the feed was uploaded.
items_valid: Option<String>The number of items in the feed that were valid.
datafeed_id: Option<String>The ID of the feed for which the status is reported.
Trait Implementations§
source§impl Clone for DatafeedStatus
impl Clone for DatafeedStatus
source§fn clone(&self) -> DatafeedStatus
fn clone(&self) -> DatafeedStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DatafeedStatus
impl Debug for DatafeedStatus
source§impl Default for DatafeedStatus
impl Default for DatafeedStatus
source§fn default() -> DatafeedStatus
fn default() -> DatafeedStatus
source§impl Deserialize for DatafeedStatus
impl Deserialize for DatafeedStatus
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
source§impl Serialize for DatafeedStatus
impl Serialize for DatafeedStatus
impl ResponseResult for DatafeedStatus
Auto Trait Implementations§
impl Freeze for DatafeedStatus
impl RefUnwindSafe for DatafeedStatus
impl Send for DatafeedStatus
impl Sync for DatafeedStatus
impl Unpin for DatafeedStatus
impl UnwindSafe for DatafeedStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more