[][src]Struct google_analytics3::EntityUserLinkEntity

pub struct EntityUserLinkEntity {
    pub account_ref: Option<AccountRef>,
    pub profile_ref: Option<ProfileRef>,
    pub web_property_ref: Option<WebPropertyRef>,
}

Entity for this link. It can be an account, a web property, or a view (profile).

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

Fields

account_ref: Option<AccountRef>

Account for this link.

profile_ref: Option<ProfileRef>

View (Profile) for this link.

web_property_ref: Option<WebPropertyRef>

Web property for this link.

Trait Implementations

impl Clone for EntityUserLinkEntity[src]

impl Debug for EntityUserLinkEntity[src]

impl Default for EntityUserLinkEntity[src]

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

impl NestedType for EntityUserLinkEntity[src]

impl Part for EntityUserLinkEntity[src]

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