[][src]Struct google_tagmanager2::GalleryReference

pub struct GalleryReference {
    pub host: Option<String>,
    pub version: Option<String>,
    pub repository: Option<String>,
    pub is_modified: Option<bool>,
    pub owner: Option<String>,
    pub signature: Option<String>,
}

Represents the link between a custom template and an entry on the Community Template Gallery site.

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

Fields

host: Option<String>

The name of the host for the community gallery template.

version: Option<String>

The version of the community gallery template.

repository: Option<String>

The name of the repository for the community gallery template.

is_modified: Option<bool>

If a user has manually edited the community gallery template.

owner: Option<String>

The name of the owner for the community gallery template.

signature: Option<String>

The signature of the community gallery template as computed at import time. This value is recomputed whenever the template is updated from the gallery.

Trait Implementations

impl Clone for GalleryReference[src]

impl Debug for GalleryReference[src]

impl Default for GalleryReference[src]

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

impl Part for GalleryReference[src]

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