[][src]Struct google_analytics3::ProfileFilterLink

pub struct ProfileFilterLink {
    pub filter_ref: Option<FilterRef>,
    pub kind: Option<String>,
    pub self_link: Option<String>,
    pub profile_ref: Option<ProfileRef>,
    pub id: Option<String>,
    pub rank: Option<i32>,
}

JSON template for an Analytics profile filter link.

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

filter_ref: Option<FilterRef>

Filter for this link.

kind: Option<String>

Resource type for Analytics filter.

self_link: Option<String>

Link for this profile filter link.

profile_ref: Option<ProfileRef>

View (Profile) for this link.

id: Option<String>

Profile filter link ID.

rank: Option<i32>

The rank of this profile filter link relative to the other filters linked to the same profile. For readonly (i.e., list and get) operations, the rank always starts at 1. For write (i.e., create, update, or delete) operations, you may specify a value between 0 and 255 inclusively, [0, 255]. In order to insert a link at the end of the list, either don't specify a rank or set a rank to a number greater than the largest rank in the list. In order to insert a link to the beginning of the list specify a rank that is less than or equal to 1. The new link will move all existing filters with the same or lower rank down the list. After the link is inserted/updated/deleted all profile filter links will be renumbered starting at 1.

Trait Implementations

impl Clone for ProfileFilterLink[src]

impl Debug for ProfileFilterLink[src]

impl Default for ProfileFilterLink[src]

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

impl RequestValue for ProfileFilterLink[src]

impl ResponseResult for ProfileFilterLink[src]

impl Serialize for ProfileFilterLink[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