Struct google_dfareporting3d4::api::PathFilter[][src]

pub struct PathFilter {
    pub event_filters: Option<Vec<EventFilter>>,
    pub kind: Option<String>,
    pub path_match_position: Option<String>,
}

Represents a DfaReporting path filter.

This type is not used in any activity, and only used as part of another schema.

Fields

event_filters: Option<Vec<EventFilter>>

Event filters in path report.

kind: Option<String>

The kind of resource this is, in this case dfareporting#pathFilter.

path_match_position: Option<String>

Determines how the ‘value’ field is matched when filtering. If not specified, defaults to EXACT. If set to WILDCARD_EXPRESSION, ‘’ is allowed as a placeholder for variable length character sequences, and it can be escaped with a backslash. Note, only paid search dimensions (‘dfa:paidSearch’) allow a matchType other than EXACT.

Trait Implementations

impl Clone for PathFilter[src]

impl Debug for PathFilter[src]

impl Default for PathFilter[src]

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

impl Part for PathFilter[src]

impl Serialize for PathFilter[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> Instrument 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.