[][src]Struct openrtb_native1::request::Image

pub struct Image<'a> {
    pub type: Option<ImageAssetType>,
    pub w: Option<i32>,
    pub wmin: Option<i32>,
    pub h: Option<i32>,
    pub hmin: Option<i32>,
    pub mimes: Option<Vec<Cow<'a, str>>>,
    pub ext: Option<Object<'a>>,
}

4.4 Image Request Object

The Image object to be used for all image elements of the Native ad such as Icons, Main Image, etc. Recommended sizes and aspect ratios are included in the Image Asset Types section.

Fields

type: Option<ImageAssetType>

optional; integer; - Type ID of the image element supported by the publisher. The publisher can display this information in an appropriate format. See Table Image Asset Types.

w: Option<i32>

optional; integer; - Width of the image in pixels.

wmin: Option<i32>

recommended; integer; - The minimum requested width of the image in pixels. This option should be used for any rescaling of images by the client. Either w or wmin should be transmitted. If only w is included, it should be considered an exact requirement.

h: Option<i32>

optional; integer; - Width of the image in pixels.

hmin: Option<i32>

recommended; integer; - The minimum requested height of the image in pixels. This option should be used for any rescaling of images by the client. Either h or hmin should be transmitted. If only h is included, it should be considered an exact requirement.

mimes: Option<Vec<Cow<'a, str>>>

optional; array of string; All types allowed Whitelist of content MIME types supported. Popular MIME types include, but are not limited to “image/jpg” “image/gif”. Each implementing Exchange should have their own list of supported types in the integration docs. See Wikipedia's MIME page for more information and links to all IETF RFCs. If blank, assume all types are allowed.

ext: Option<Object<'a>>

optional; object; - This object is a placeholder that may contain custom JSON agreed to by the parties to support flexibility beyond the standard defined in this specification.

Trait Implementations

impl<'a> Clone for Image<'a>[src]

impl<'a> Debug for Image<'a>[src]

impl<'a> Default for Image<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Image<'a>[src]

impl<'a> PartialEq<Image<'a>> for Image<'a>[src]

impl<'a> Serialize for Image<'a>[src]

impl<'a> StructuralPartialEq for Image<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Image<'a>

impl<'a> Send for Image<'a>

impl<'a> Sync for Image<'a>

impl<'a> Unpin for Image<'a>

impl<'a> UnwindSafe for Image<'a>

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> DefaultExt for T where
    T: Default + PartialEq<T>, 
[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.