Struct google_webmasters3::WmxSitemap[][src]

pub struct WmxSitemap {
    pub errors: Option<String>,
    pub warnings: Option<String>,
    pub is_pending: Option<bool>,
    pub last_submitted: Option<String>,
    pub is_sitemaps_index: Option<bool>,
    pub last_downloaded: Option<String>,
    pub path: Option<String>,
    pub type_: Option<String>,
    pub contents: Option<Vec<WmxSitemapContent>>,
}

Contains detailed information about a specific URL submitted as a sitemap.

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

Number of errors in the sitemap. These are issues with the sitemap itself that need to be fixed before it can be processed correctly.

Number of warnings for the sitemap. These are generally non-critical issues with URLs in the sitemaps.

If true, the sitemap has not been processed.

Date & time in which this sitemap was submitted. Date format is in RFC 3339 format (yyyy-mm-dd).

If true, the sitemap is a collection of sitemaps.

Date & time in which this sitemap was last downloaded. Date format is in RFC 3339 format (yyyy-mm-dd).

The url of the sitemap.

The type of the sitemap. For example: rssFeed.

The various content types in the sitemap.

Trait Implementations

impl Default for WmxSitemap
[src]

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

impl Clone for WmxSitemap
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for WmxSitemap
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for WmxSitemap
[src]

Auto Trait Implementations

impl Send for WmxSitemap

impl Sync for WmxSitemap