Struct google_analytics3::api::Filter[][src]

pub struct Filter {
    pub account_id: Option<String>,
    pub advanced_details: Option<FilterAdvancedDetails>,
    pub created: Option<String>,
    pub exclude_details: Option<FilterExpression>,
    pub id: Option<String>,
    pub include_details: Option<FilterExpression>,
    pub kind: Option<String>,
    pub lowercase_details: Option<FilterLowercaseDetails>,
    pub name: Option<String>,
    pub parent_link: Option<FilterParentLink>,
    pub search_and_replace_details: Option<FilterSearchAndReplaceDetails>,
    pub self_link: Option<String>,
    pub type_: Option<String>,
    pub updated: Option<String>,
    pub uppercase_details: Option<FilterUppercaseDetails>,
}

JSON template for an Analytics account filter.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

account_id: Option<String>

Account ID to which this filter belongs.

advanced_details: Option<FilterAdvancedDetails>

Details for the filter of the type ADVANCED.

created: Option<String>

Time this filter was created.

exclude_details: Option<FilterExpression>

Details for the filter of the type EXCLUDE.

id: Option<String>

Filter ID.

include_details: Option<FilterExpression>

Details for the filter of the type INCLUDE.

kind: Option<String>

Resource type for Analytics filter.

lowercase_details: Option<FilterLowercaseDetails>

Details for the filter of the type LOWER.

name: Option<String>

Name of this filter.

parent_link: Option<FilterParentLink>

Parent link for this filter. Points to the account to which this filter belongs.

search_and_replace_details: Option<FilterSearchAndReplaceDetails>

Details for the filter of the type SEARCH_AND_REPLACE.

self_link: Option<String>

Link for this filter.

type_: Option<String>

Type of this filter. Possible values are INCLUDE, EXCLUDE, LOWERCASE, UPPERCASE, SEARCH_AND_REPLACE and ADVANCED.

updated: Option<String>

Time this filter was last modified.

uppercase_details: Option<FilterUppercaseDetails>

Details for the filter of the type UPPER.

Trait Implementations

impl Clone for Filter[src]

impl Debug for Filter[src]

impl Default for Filter[src]

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

impl RequestValue for Filter[src]

impl ResponseResult for Filter[src]

impl Serialize for Filter[src]

Auto Trait Implementations

impl RefUnwindSafe for Filter

impl Send for Filter

impl Sync for Filter

impl Unpin for Filter

impl UnwindSafe for Filter

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.