pub struct RichMediaExitOverride {
pub custom_exit_url: Option<String>,
pub use_custom_exit_url: Option<bool>,
pub exit_id: Option<String>,
}Expand description
Rich Media Exit Override.
This type is not used in any activity, and only used as part of another schema.
Fields§
§custom_exit_url: Option<String>Click-through URL to override the default exit URL. Applicable if the useCustomExitUrl field is set to true.
use_custom_exit_url: Option<bool>Whether to use the custom exit URL.
exit_id: Option<String>ID for the override to refer to a specific exit in the creative.
Trait Implementations§
Source§impl Clone for RichMediaExitOverride
impl Clone for RichMediaExitOverride
Source§fn clone(&self) -> RichMediaExitOverride
fn clone(&self) -> RichMediaExitOverride
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RichMediaExitOverride
impl Debug for RichMediaExitOverride
Source§impl Default for RichMediaExitOverride
impl Default for RichMediaExitOverride
Source§fn default() -> RichMediaExitOverride
fn default() -> RichMediaExitOverride
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RichMediaExitOverride
impl<'de> Deserialize<'de> for RichMediaExitOverride
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
Source§impl Serialize for RichMediaExitOverride
impl Serialize for RichMediaExitOverride
impl Part for RichMediaExitOverride
Auto Trait Implementations§
impl Freeze for RichMediaExitOverride
impl RefUnwindSafe for RichMediaExitOverride
impl Send for RichMediaExitOverride
impl Sync for RichMediaExitOverride
impl Unpin for RichMediaExitOverride
impl UnwindSafe for RichMediaExitOverride
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> 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