Struct google_analytics3::api::CustomDataSources
source · [−]pub struct CustomDataSources {
pub items: Option<Vec<CustomDataSource>>,
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>,
pub username: Option<String>,
}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
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.
kind: Option<String>Collection type.
next_link: Option<String>Link to next page for this custom data source collection.
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.
total_results: Option<i32>The total number of results for the query, regardless of the number of results in the response.
username: Option<String>Email ID of the authenticated user
Trait Implementations
sourceimpl Clone for CustomDataSources
impl Clone for CustomDataSources
sourcefn clone(&self) -> CustomDataSources
fn clone(&self) -> CustomDataSources
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CustomDataSources
impl Debug for CustomDataSources
sourceimpl Default for CustomDataSources
impl Default for CustomDataSources
sourcefn default() -> CustomDataSources
fn default() -> CustomDataSources
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CustomDataSources
impl<'de> Deserialize<'de> for CustomDataSources
sourcefn 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
sourceimpl Serialize for CustomDataSources
impl Serialize for CustomDataSources
impl ResponseResult for CustomDataSources
Auto Trait Implementations
impl RefUnwindSafe for CustomDataSources
impl Send for CustomDataSources
impl Sync for CustomDataSources
impl Unpin for CustomDataSources
impl UnwindSafe for CustomDataSources
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more