pub struct UrlChannel {
pub id: Option<String>,
pub kind: Option<String>,
pub url_pattern: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<String>Unique identifier of this URL channel. This should be considered an opaque identifier; it is not safe to rely on it being in any particular format.
kind: Option<String>Kind of resource this is, in this case adexchangeseller#urlChannel.
url_pattern: Option<String>URL Pattern of this URL 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 Part 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