pub struct DestinationNotCrawlableEvidence {
pub crawl_time: Option<DateTime<Utc>>,
pub crawled_url: Option<String>,
pub reason: Option<String>,
}Expand description
Evidence that the creative’s destination URL was not crawlable by Google.
This type is not used in any activity, and only used as part of another schema.
Fields§
§crawl_time: Option<DateTime<Utc>>Approximate time of the crawl.
crawled_url: Option<String>Destination URL that was attempted to be crawled.
reason: Option<String>Reason of destination not crawlable.
Trait Implementations§
Source§impl Clone for DestinationNotCrawlableEvidence
impl Clone for DestinationNotCrawlableEvidence
Source§fn clone(&self) -> DestinationNotCrawlableEvidence
fn clone(&self) -> DestinationNotCrawlableEvidence
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 Default for DestinationNotCrawlableEvidence
impl Default for DestinationNotCrawlableEvidence
Source§fn default() -> DestinationNotCrawlableEvidence
fn default() -> DestinationNotCrawlableEvidence
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DestinationNotCrawlableEvidence
impl<'de> Deserialize<'de> for DestinationNotCrawlableEvidence
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
impl Part for DestinationNotCrawlableEvidence
Auto Trait Implementations§
impl Freeze for DestinationNotCrawlableEvidence
impl RefUnwindSafe for DestinationNotCrawlableEvidence
impl Send for DestinationNotCrawlableEvidence
impl Sync for DestinationNotCrawlableEvidence
impl Unpin for DestinationNotCrawlableEvidence
impl UnwindSafe for DestinationNotCrawlableEvidence
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