pub struct VideoPlayerSizeAssignedTargetingOptionDetails {
pub targeting_option_id: Option<String>,
pub video_player_size: Option<String>,
}Expand description
Video player size targeting option details. This will be populated in the video_player_size_details field when targeting_type is TARGETING_TYPE_VIDEO_PLAYER_SIZE. Explicitly targeting all options is not supported. Remove all video player size targeting options to achieve this effect.
This type is not used in any activity, and only used as part of another schema.
Fields§
§targeting_option_id: Option<String>Required. The targeting_option_id field when targeting_type is TARGETING_TYPE_VIDEO_PLAYER_SIZE.
video_player_size: Option<String>Required. The video player size.
Trait Implementations§
Source§impl Clone for VideoPlayerSizeAssignedTargetingOptionDetails
impl Clone for VideoPlayerSizeAssignedTargetingOptionDetails
Source§fn clone(&self) -> VideoPlayerSizeAssignedTargetingOptionDetails
fn clone(&self) -> VideoPlayerSizeAssignedTargetingOptionDetails
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 Default for VideoPlayerSizeAssignedTargetingOptionDetails
impl Default for VideoPlayerSizeAssignedTargetingOptionDetails
Source§fn default() -> VideoPlayerSizeAssignedTargetingOptionDetails
fn default() -> VideoPlayerSizeAssignedTargetingOptionDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VideoPlayerSizeAssignedTargetingOptionDetails
impl<'de> Deserialize<'de> for VideoPlayerSizeAssignedTargetingOptionDetails
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 VideoPlayerSizeAssignedTargetingOptionDetails
Auto Trait Implementations§
impl Freeze for VideoPlayerSizeAssignedTargetingOptionDetails
impl RefUnwindSafe for VideoPlayerSizeAssignedTargetingOptionDetails
impl Send for VideoPlayerSizeAssignedTargetingOptionDetails
impl Sync for VideoPlayerSizeAssignedTargetingOptionDetails
impl Unpin for VideoPlayerSizeAssignedTargetingOptionDetails
impl UnwindSafe for VideoPlayerSizeAssignedTargetingOptionDetails
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