Struct google_analytics3::api::EntityAdWordsLinks
source · pub struct EntityAdWordsLinks {
pub items: Option<Vec<EntityAdWordsLink>>,
pub items_per_page: Option<i32>,
pub kind: Option<String>,
pub next_link: Option<String>,
pub previous_link: Option<String>,
pub start_index: Option<i32>,
pub total_results: Option<i32>,
}Expand description
An entity Google Ads link collection provides a list of GA-Google Ads links Each resource in this collection corresponds to a single link.
§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).
- web property ad words links list management (response)
Fields§
§items: Option<Vec<EntityAdWordsLink>>A list of entity Google Ads links.
items_per_page: Option<i32>The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
kind: Option<String>Collection type.
next_link: Option<String>Next link for this Google Ads link collection.
previous_link: Option<String>Previous link for this Google Ads link collection.
start_index: Option<i32>The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.
total_results: Option<i32>The total number of results for the query, regardless of the number of results in the response.
Trait Implementations§
source§impl Clone for EntityAdWordsLinks
impl Clone for EntityAdWordsLinks
source§fn clone(&self) -> EntityAdWordsLinks
fn clone(&self) -> EntityAdWordsLinks
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for EntityAdWordsLinks
impl Debug for EntityAdWordsLinks
source§impl Default for EntityAdWordsLinks
impl Default for EntityAdWordsLinks
source§fn default() -> EntityAdWordsLinks
fn default() -> EntityAdWordsLinks
source§impl<'de> Deserialize<'de> for EntityAdWordsLinks
impl<'de> Deserialize<'de> for EntityAdWordsLinks
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>,
source§impl Serialize for EntityAdWordsLinks
impl Serialize for EntityAdWordsLinks
impl ResponseResult for EntityAdWordsLinks
Auto Trait Implementations§
impl Freeze for EntityAdWordsLinks
impl RefUnwindSafe for EntityAdWordsLinks
impl Send for EntityAdWordsLinks
impl Sync for EntityAdWordsLinks
impl Unpin for EntityAdWordsLinks
impl UnwindSafe for EntityAdWordsLinks
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more