pub struct SitemapInfo {
pub sitemap_id: String,
pub sitemap_url: String,
pub last_access_date: Option<DateTime<Utc>>,
pub errors_count: i32,
pub urls_count: i64,
pub children_count: i32,
pub sources: Vec<ApiSitemapSource>,
pub sitemap_type: ApiSitemapType,
}Expand description
Sitemap information
Fields§
§sitemap_id: StringSitemap ID
sitemap_url: StringSitemap URL
last_access_date: Option<DateTime<Utc>>Last access date
errors_count: i32Number of errors in the file
urls_count: i64Number of URLs in the file
children_count: i32Number of child Sitemap files
sources: Vec<ApiSitemapSource>Sources that led the robot to this file
sitemap_type: ApiSitemapTypeType of the Sitemap file
Trait Implementations§
Source§impl Clone for SitemapInfo
impl Clone for SitemapInfo
Source§fn clone(&self) -> SitemapInfo
fn clone(&self) -> SitemapInfo
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SitemapInfo
impl Debug for SitemapInfo
Source§impl<'de> Deserialize<'de> for SitemapInfo
impl<'de> Deserialize<'de> for SitemapInfo
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
Source§impl PartialEq for SitemapInfo
impl PartialEq for SitemapInfo
Source§impl Serialize for SitemapInfo
impl Serialize for SitemapInfo
impl StructuralPartialEq for SitemapInfo
Auto Trait Implementations§
impl Freeze for SitemapInfo
impl RefUnwindSafe for SitemapInfo
impl Send for SitemapInfo
impl Sync for SitemapInfo
impl Unpin for SitemapInfo
impl UnwindSafe for SitemapInfo
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)