Struct google_analytics3::CustomDataSources
source · pub struct CustomDataSources {
pub username: Option<String>,
pub kind: Option<String>,
pub items: Option<Vec<CustomDataSource>>,
pub items_per_page: Option<i32>,
pub previous_link: Option<String>,
pub start_index: Option<i32>,
pub next_link: Option<String>,
pub total_results: Option<i32>,
}Expand description
Lists Analytics custom data sources to which the user has access. Each resource in the collection corresponds to a single Analytics custom data source.
§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).
- custom data sources list management (response)
Fields§
§username: Option<String>Email ID of the authenticated user
kind: Option<String>Collection type.
items: Option<Vec<CustomDataSource>>Collection of custom data sources.
items_per_page: Option<i32>The maximum number of resources the response can contain, regardless of the actual number of resources returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.
previous_link: Option<String>Link to previous page for this custom data source collection.
start_index: Option<i32>The starting index of the resources, which is 1 by default or otherwise specified by the start-index query parameter.
next_link: Option<String>Link to next page for this custom data source collection.
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 CustomDataSources
impl Clone for CustomDataSources
source§fn clone(&self) -> CustomDataSources
fn clone(&self) -> CustomDataSources
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CustomDataSources
impl Debug for CustomDataSources
source§impl Default for CustomDataSources
impl Default for CustomDataSources
source§fn default() -> CustomDataSources
fn default() -> CustomDataSources
source§impl Deserialize for CustomDataSources
impl Deserialize for CustomDataSources
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
source§impl Serialize for CustomDataSources
impl Serialize for CustomDataSources
impl ResponseResult for CustomDataSources
Auto Trait Implementations§
impl Freeze for CustomDataSources
impl RefUnwindSafe for CustomDataSources
impl Send for CustomDataSources
impl Sync for CustomDataSources
impl Unpin for CustomDataSources
impl UnwindSafe for CustomDataSources
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> 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