pub struct UrlChannel {
pub name: Option<String>,
pub reporting_dimension_id: Option<String>,
pub uri_pattern: Option<String>,
}Expand description
Representation of a URL channel. URL channels allow you to track the performance of particular pages in your site; see URL channels for more information.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- adclients urlchannels get accounts (response)
Fields§
§name: Option<String>Output only. Resource name of the URL channel. Format: accounts/{account}/adclients/{adclient}/urlchannels/{urlchannel}
reporting_dimension_id: Option<String>Output only. Unique ID of the custom channel as used in the URL_CHANNEL_ID reporting dimension.
uri_pattern: Option<String>URI pattern of the channel. Does not include “http://” or “https://”. Example: www.example.com/home
Trait Implementations§
Source§impl Clone for UrlChannel
impl Clone for UrlChannel
Source§fn clone(&self) -> UrlChannel
fn clone(&self) -> UrlChannel
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 UrlChannel
impl Debug for UrlChannel
Source§impl Default for UrlChannel
impl Default for UrlChannel
Source§fn default() -> UrlChannel
fn default() -> UrlChannel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UrlChannel
impl<'de> Deserialize<'de> for UrlChannel
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 UrlChannel
impl Serialize for UrlChannel
impl ResponseResult for UrlChannel
Auto Trait Implementations§
impl Freeze for UrlChannel
impl RefUnwindSafe for UrlChannel
impl Send for UrlChannel
impl Sync for UrlChannel
impl Unpin for UrlChannel
impl UnwindSafe for UrlChannel
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