[][src]Enum openrtb_native1::ImageAssetType

pub enum ImageAssetType {
    Icon,
    Logo,
    Main,
    ExchangeSpecific(i32),
}

7.5 Image Asset Types

Below is a list of common image asset element types of native advertising at the time of writing this spec. This list is non-exhaustive and intended to be extended by the buyers and sellers as the format evolves.

An implementing exchange may not support all asset variants or may introduce new ones unique to that system.

In order to facilitate adoption, recommendations are made for both minimum sizes and aspect ratios. We speak here of 'minimum maximum height' or ‘max height of at least’, which means the SSP should support a max height of at least this value. They are free to support larger, but the DSP knows that if they have an image of this size it will be accepted. Note that SSPs will be responsible for sizing image to exact size if min-max- height framework is used; exact size may not be available at bid request time. Width is calculated from the 3 supported aspect ratios. Note we merged the prior overlapping type 1 and type 2 as just type 1 - to be used for app icon, brand logo, or similar.

Variants

Icon

Icon image. optional; -; -; max height: at least 50, aspect ratio: 1:1

👎 Deprecated:

Please use the Icon variant instead

Logo image for the brand/app.

Main

Large image preview for the ad. At least one of 2 size variants required: Small Variant: max height: 200+, max width: 200+, 267, or 382, aspect ratio: 1:1, 4:3, or 1.91:1. Large Variant: max height: 627+, max width: 627+, 836, or 1198, aspect ratio: 1:1, 4:3, or 1.91:1.

ExchangeSpecific(i32)

Reserved for Exchange specific usage numbered above 500

Trait Implementations

impl Clone for ImageAssetType[src]

impl Copy for ImageAssetType[src]

impl Debug for ImageAssetType[src]

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

impl Eq for ImageAssetType[src]

impl PartialEq<ImageAssetType> for ImageAssetType[src]

impl Serialize for ImageAssetType[src]

impl StructuralEq for ImageAssetType[src]

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