pub struct AdClient {
pub arc_opt_in: Option<bool>,
pub id: Option<String>,
pub kind: Option<String>,
pub product_code: Option<String>,
pub supports_reporting: Option<bool>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§arc_opt_in: Option<bool>Whether this ad client is opted in to ARC.
id: Option<String>Unique identifier of this ad client.
kind: Option<String>Kind of resource this is, in this case adexchangeseller#adClient.
product_code: Option<String>This ad client’s product code, which corresponds to the PRODUCT_CODE report dimension.
supports_reporting: Option<bool>Whether this ad client supports being reported on.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AdClient
impl<'de> Deserialize<'de> for AdClient
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 AdClient
Auto Trait Implementations§
impl Freeze for AdClient
impl RefUnwindSafe for AdClient
impl Send for AdClient
impl Sync for AdClient
impl Unpin for AdClient
impl UnwindSafe for AdClient
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