[][src]Enum openrtb2::PlaybackMethod

#[repr(i32)]pub enum PlaybackMethod {
    AutoPlaySoundOn,
    AutoPlaySoundOff,
    ClickToPlay,
    MouseOver,
    EnterSoundOn,
    EnterSoundOff,
}

5.10 Playback Methods

The following table lists the various playback methods.

Variants

AutoPlaySoundOn

Initiates on Page Load with Sound On

AutoPlaySoundOff

Initiates on Page Load with Sound Off by Default

ClickToPlay

Initiates on Click with Sound On

MouseOver

Initiates on Mouse-Over with Sound On

EnterSoundOn

Initiates on Entering Viewport with Sound On

EnterSoundOff

Initiates on Entering Viewport with Sound Off by Default

Trait Implementations

impl Clone for PlaybackMethod[src]

impl Copy for PlaybackMethod[src]

impl Debug for PlaybackMethod[src]

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

impl Eq for PlaybackMethod[src]

impl PartialEq<PlaybackMethod> for PlaybackMethod[src]

impl Serialize for PlaybackMethod[src]

impl StructuralEq for PlaybackMethod[src]

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