pub struct IndexStatusResult {
pub sitemap: Option<Vec<String>>,
pub referring_urls: Option<Vec<String>>,
pub verdict: Option<Verdict>,
pub coverage_state: Option<String>,
pub robots_txt_state: Option<RobotsTxtState>,
pub indexing_state: Option<IndexingState>,
pub last_crawl_time: Option<String>,
pub page_fetch_state: Option<PageFetchState>,
pub google_canonical: Option<String>,
pub user_canonical: Option<String>,
pub crawled_as: Option<CrawlUserAgent>,
}Fields§
§sitemap: Option<Vec<String>>§referring_urls: Option<Vec<String>>§verdict: Option<Verdict>§coverage_state: Option<String>§robots_txt_state: Option<RobotsTxtState>§indexing_state: Option<IndexingState>§last_crawl_time: Option<String>§page_fetch_state: Option<PageFetchState>§google_canonical: Option<String>§user_canonical: Option<String>§crawled_as: Option<CrawlUserAgent>Trait Implementations§
Source§impl Clone for IndexStatusResult
impl Clone for IndexStatusResult
Source§fn clone(&self) -> IndexStatusResult
fn clone(&self) -> IndexStatusResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IndexStatusResult
impl Debug for IndexStatusResult
Source§impl<'de> Deserialize<'de> for IndexStatusResult
impl<'de> Deserialize<'de> for IndexStatusResult
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 IndexStatusResult
impl RefUnwindSafe for IndexStatusResult
impl Send for IndexStatusResult
impl Sync for IndexStatusResult
impl Unpin for IndexStatusResult
impl UnwindSafe for IndexStatusResult
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