[][src]Struct google_realtimebidding1::PolicyTopicEvidence

pub struct PolicyTopicEvidence {
    pub destination_not_working: Option<DestinationNotWorkingEvidence>,
    pub destination_not_crawlable: Option<DestinationNotCrawlableEvidence>,
    pub destination_url: Option<DestinationUrlEvidence>,
    pub download_size: Option<DownloadSizeEvidence>,
    pub http_cookie: Option<HttpCookieEvidence>,
    pub http_call: Option<HttpCallEvidence>,
    pub domain_call: Option<DomainCallEvidence>,
}

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_working: Option<DestinationNotWorkingEvidence>

The creative's destination URL did not function properly or was incorrectly set up.

destination_not_crawlable: Option<DestinationNotCrawlableEvidence>

The creative's destination URL was not crawlable by Google.

destination_url: Option<DestinationUrlEvidence>

URL of the actual landing page.

download_size: Option<DownloadSizeEvidence>

Total download size and URL-level download size breakdown for resources in a creative.

http_cookie: Option<HttpCookieEvidence>

Evidence for HTTP cookie-related policy violations.

http_call: Option<HttpCallEvidence>

HTTP calls made by the creative that resulted in policy violations.

domain_call: Option<DomainCallEvidence>

Number of HTTP calls made by the creative, broken down by domain.

Trait Implementations

impl Clone for PolicyTopicEvidence[src]

impl Debug for PolicyTopicEvidence[src]

impl Default for PolicyTopicEvidence[src]

impl<'de> Deserialize<'de> for PolicyTopicEvidence[src]

impl Part for PolicyTopicEvidence[src]

impl Serialize for PolicyTopicEvidence[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any