Struct google_youtube3::api::ChannelConversionPing
source · pub struct ChannelConversionPing {
pub context: Option<String>,
pub conversion_url: Option<String>,
}
Expand description
Pings that the app shall fire (authenticated by biscotti cookie). Each ping has a context, in which the app must fire the ping, and a url identifying the ping.
This type is not used in any activity, and only used as part of another schema.
Fields§
§context: Option<String>
Defines the context of the ping.
conversion_url: Option<String>
The url (without the schema) that the player shall send the ping to. It’s at caller’s descretion to decide which schema to use (http vs https) Example of a returned url: //googleads.g.doubleclick.net/pagead/ viewthroughconversion/962985656/?data=path%3DtHe_path%3Btype%3D cview%3Butuid%3DGISQtTNGYqaYl4sKxoVvKA&labe=default The caller must append biscotti authentication (ms param in case of mobile, for example) to this ping.
Trait Implementations§
source§impl Clone for ChannelConversionPing
impl Clone for ChannelConversionPing
source§fn clone(&self) -> ChannelConversionPing
fn clone(&self) -> ChannelConversionPing
Returns a copy 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 ChannelConversionPing
impl Debug for ChannelConversionPing
source§impl Default for ChannelConversionPing
impl Default for ChannelConversionPing
source§fn default() -> ChannelConversionPing
fn default() -> ChannelConversionPing
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ChannelConversionPing
impl<'de> Deserialize<'de> for ChannelConversionPing
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 ChannelConversionPing
impl Serialize for ChannelConversionPing
impl Part for ChannelConversionPing
Auto Trait Implementations§
impl RefUnwindSafe for ChannelConversionPing
impl Send for ChannelConversionPing
impl Sync for ChannelConversionPing
impl Unpin for ChannelConversionPing
impl UnwindSafe for ChannelConversionPing
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