pub struct ObaIcon {
pub click_tracking_url: Option<String>,
pub dimensions: Option<Dimensions>,
pub landing_page_url: Option<String>,
pub position: Option<String>,
pub program: Option<String>,
pub resource_mime_type: Option<String>,
pub resource_url: Option<String>,
pub view_tracking_url: Option<String>,
}
Expand description
OBA Icon for a Creative
This type is not used in any activity, and only used as part of another schema.
Fields§
§click_tracking_url: Option<String>
Required. The click tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
dimensions: Option<Dimensions>
The dimensions of the OBA icon.
landing_page_url: Option<String>
Required. The landing page URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
position: Option<String>
The position of the OBA icon on the creative.
program: Option<String>
The program of the OBA icon. For example: “AdChoices”.
resource_mime_type: Option<String>
The MIME type of the OBA icon resource.
resource_url: Option<String>
The URL of the OBA icon resource.
view_tracking_url: Option<String>
Required. The view tracking URL of the OBA icon. Only URLs of the following domains are allowed: * https://info.evidon.com * https://l.betrad.com
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ObaIcon
impl<'de> Deserialize<'de> for ObaIcon
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for ObaIcon
Auto Trait Implementations§
impl Freeze for ObaIcon
impl RefUnwindSafe for ObaIcon
impl Send for ObaIcon
impl Sync for ObaIcon
impl Unpin for ObaIcon
impl UnwindSafe for ObaIcon
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more