pub struct Sitemap {
pub path: Option<String>,
pub last_submitted: Option<String>,
pub is_pending: Option<bool>,
pub is_sitemaps_index: Option<bool>,
pub sitemap_type: Option<String>,
pub last_downloaded: Option<String>,
pub warnings: Option<String>,
pub errors: Option<String>,
pub contents: Option<Vec<SitemapContent>>,
}Expand description
https://developers.google.com/webmaster-tools/v1/sitemaps#resource
Fields§
§path: Option<String>§last_submitted: Option<String>§is_pending: Option<bool>§is_sitemaps_index: Option<bool>§sitemap_type: Option<String>§last_downloaded: Option<String>§warnings: Option<String>§errors: Option<String>§contents: Option<Vec<SitemapContent>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sitemap
impl<'de> Deserialize<'de> for Sitemap
Source§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 Freeze for Sitemap
impl RefUnwindSafe for Sitemap
impl Send for Sitemap
impl Sync for Sitemap
impl Unpin for Sitemap
impl UnwindSafe for Sitemap
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
Mutably borrows from an owned value. Read more