[][src]Enum openrtb2::VideoPlacementType

#[repr(i32)]pub enum VideoPlacementType {
    InStream,
    InBanner,
    InArticle,
    InFeed,
    Floating,
}

5.9 Video Placement Types

The following table lists the various types of video placements derived largely from the IAB Digital Video Guidelines.

Variants

InStream

In-Stream Played before, during or after the streaming video content that the consumer has requested (e.g., Pre-roll, Mid-roll, Post-roll).

InBanner

In-Banner Exists within a web banner that leverages the banner space to deliver a video experience as opposed to another static or rich media format. The format relies on the existence of display ad inventory on the page for its delivery.

InArticle

In-Article Loads and plays dynamically between paragraphs of editorial content; existing as a standalone branded message.

InFeed

In-Feed Found in content, social, or product feeds.

Floating

Interstitial/Slider/Floating Covers the entire or a portion of screen area, but is always on screen while displayed (i.e. cannot be scrolled out of view). Note that a full-screen interstitial (e.g., in mobile) can be distinguished from a floating/slider unit by the imp.instl field.

Trait Implementations

impl Clone for VideoPlacementType[src]

impl Copy for VideoPlacementType[src]

impl Debug for VideoPlacementType[src]

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

impl Eq for VideoPlacementType[src]

impl PartialEq<VideoPlacementType> for VideoPlacementType[src]

impl Serialize for VideoPlacementType[src]

impl StructuralEq for VideoPlacementType[src]

impl StructuralPartialEq for VideoPlacementType[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.