pub struct PolicyTopicEvidence {
pub destination_not_crawlable: Option<DestinationNotCrawlableEvidence>,
pub destination_not_working: Option<DestinationNotWorkingEvidence>,
pub destination_url: Option<DestinationUrlEvidence>,
pub domain_call: Option<DomainCallEvidence>,
pub download_size: Option<DownloadSizeEvidence>,
pub http_call: Option<HttpCallEvidence>,
pub http_cookie: Option<HttpCookieEvidence>,
}Expand description
Evidence associated with a policy topic entry.
This type is not used in any activity, and only used as part of another schema.
Fields§
§destination_not_crawlable: Option<DestinationNotCrawlableEvidence>The creative’s destination URL was not crawlable by Google.
destination_not_working: Option<DestinationNotWorkingEvidence>The creative’s destination URL did not function properly or was incorrectly set up.
destination_url: Option<DestinationUrlEvidence>URL of the actual landing page.
domain_call: Option<DomainCallEvidence>Number of HTTP calls made by the creative, broken down by domain.
download_size: Option<DownloadSizeEvidence>Total download size and URL-level download size breakdown for resources in a creative.
http_call: Option<HttpCallEvidence>HTTP calls made by the creative that resulted in policy violations.
Evidence for HTTP cookie-related policy violations.
Trait Implementations§
Source§impl Clone for PolicyTopicEvidence
impl Clone for PolicyTopicEvidence
Source§fn clone(&self) -> PolicyTopicEvidence
fn clone(&self) -> PolicyTopicEvidence
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 PolicyTopicEvidence
impl Debug for PolicyTopicEvidence
Source§impl Default for PolicyTopicEvidence
impl Default for PolicyTopicEvidence
Source§fn default() -> PolicyTopicEvidence
fn default() -> PolicyTopicEvidence
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PolicyTopicEvidence
impl<'de> Deserialize<'de> for PolicyTopicEvidence
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 Serialize for PolicyTopicEvidence
impl Serialize for PolicyTopicEvidence
impl Part for PolicyTopicEvidence
Auto Trait Implementations§
impl Freeze for PolicyTopicEvidence
impl RefUnwindSafe for PolicyTopicEvidence
impl Send for PolicyTopicEvidence
impl Sync for PolicyTopicEvidence
impl Unpin for PolicyTopicEvidence
impl UnwindSafe for PolicyTopicEvidence
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