pub struct Creative {
pub id: String,
pub sequence: i64,
pub ad_id: String,
pub api_framework: Option<String>,
pub universal_ad_ids: Vec<UniversalAdId>,
pub linear: Option<Linear>,
pub non_linear_ads: Option<NonLinear>,
}
Fields§
§id: String
§sequence: i64
§ad_id: String
§api_framework: Option<String>
§universal_ad_ids: Vec<UniversalAdId>
§linear: Option<Linear>
§non_linear_ads: Option<NonLinear>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Creative
impl<'de> Deserialize<'de> for Creative
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
Auto Trait Implementations§
impl Freeze for Creative
impl RefUnwindSafe for Creative
impl Send for Creative
impl Sync for Creative
impl Unpin for Creative
impl UnwindSafe for Creative
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