[][src]Struct google_dfareporting2d8::PopupWindowProperties

pub struct PopupWindowProperties {
    pub show_status_bar: Option<bool>,
    pub show_scroll_bar: Option<bool>,
    pub show_address_bar: Option<bool>,
    pub show_menu_bar: Option<bool>,
    pub title: Option<String>,
    pub offset: Option<OffsetPosition>,
    pub position_type: Option<String>,
    pub show_tool_bar: Option<bool>,
    pub dimension: Option<Size>,
}

Popup Window Properties.

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

Fields

show_status_bar: Option<bool>

Whether to display the browser status bar.

show_scroll_bar: Option<bool>

Whether to display the browser scroll bar.

show_address_bar: Option<bool>

Whether to display the browser address bar.

show_menu_bar: Option<bool>

Whether to display the browser menu bar.

title: Option<String>

Title of popup window.

offset: Option<OffsetPosition>

Upper-left corner coordinates of the popup window. Applicable if positionType is COORDINATES.

position_type: Option<String>

Popup window position either centered or at specific coordinate.

show_tool_bar: Option<bool>

Whether to display the browser tool bar.

dimension: Option<Size>

Popup dimension for a creative. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA and all VPAID

Trait Implementations

impl Part for PopupWindowProperties[src]

impl Default for PopupWindowProperties[src]

impl Clone for PopupWindowProperties[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PopupWindowProperties[src]

impl Serialize for PopupWindowProperties[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]